{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.tide-mood-journal","title":"Tide — Mood Journal","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Journaling","Mood Tracking"],"styleTags":["Colorful"],"category":"Mood Tracking","registryDependencies":[],"docs":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","license":null,"kind":"app_template","createdAt":"2026-05-25T19:40:48.808Z","updatedAt":"2026-05-25T19:40:48.808Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/tide-mood-journal.json","cli":"npx vp0com add tide-mood-journal --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/tide-mood-journal.json","downloadExpo":"https://api.vp0.com/export/tide-mood-journal/expo.zip"},"sourceHash":"sha256:4e41b85cb80237910e4a35eacba375e888ede918874e3f531a3b57945036c9e7","meta":{"com.vp0.contentId":"203a8162-8ea0-4a49-8ddd-d8d4e1ab8255","com.vp0.platform":"ios","com.vp0.availableLanguages":["react-native"],"com.vp0.defaultLanguage":"react-native","com.vp0.contentType":"template","com.vp0.kind":"app_template","com.vp0.category":"Mood Tracking","com.vp0.sourceToken":"vp0_f5dabb2534b5af7ebd9b84b9","com.vp0.sourceHash":"sha256:4e41b85cb80237910e4a35eacba375e888ede918874e3f531a3b57945036c9e7","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"tide-mood-journal","slug":"tide-mood-journal","sourceToken":"vp0_f5dabb2534b5af7ebd9b84b9","contentType":"template","platform":"ios","description":"Log how you feel with a tap and watch your week take shape in color.","createdBy":"vp0","tags":["Journaling","Mood Tracking","Colorful"],"availableLanguages":["react-native"],"defaultLanguage":"react-native","targets":[{"name":"react-native","entrypoint":"App.tsx"}],"files":[{"language":"react-native","path":"App.tsx","type":"registry:page","target":"app/App.tsx","rawUrl":"https://api.vp0.com/designs/tide-mood-journal/raw?language=react-native&path=App.tsx","content":"import React, { useState } from 'react';\nimport { View, Text, Pressable, ScrollView, StyleSheet, SafeAreaView } from 'react-native';\n\nconst MOODS = [\n  { key: 'rough', face: '😣', color: '#7C5CFF' },\n  { key: 'meh', face: '😕', color: '#4A8FE7' },\n  { key: 'okay', face: '🙂', color: '#3FB8AF' },\n  { key: 'good', face: '😄', color: '#FFB020' },\n  { key: 'great', face: '🤩', color: '#FF6B9D' },\n];\nconst WEEK = [\n  { d: 'M', c: '#4A8FE7' }, { d: 'T', c: '#3FB8AF' }, { d: 'W', c: '#FFB020' },\n  { d: 'T', c: '#FF6B9D' }, { d: 'F', c: '#3FB8AF' }, { d: 'S', c: '#FFB020' }, { d: 'S', c: '#2A2A33' },\n];\n\nexport default function App() {\n  const [sel, setSel] = useState('okay');\n  const chosen = MOODS.find((m) => m.key === sel)!;\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>HOW ARE YOU?</Text>\n        <Text style={s.h1}>Sunday evening</Text>\n\n        <View style={s.moodRow}>\n          {MOODS.map((m) => {\n            const on = m.key === sel;\n            return (\n              <Pressable key={m.key} onPress={() => setSel(m.key)} style={[s.mood, on && { backgroundColor: m.color + '33', borderColor: m.color }]}>\n                <Text style={[s.face, on && { transform: [{ scale: 1.15 }] }]}>{m.face}</Text>\n              </Pressable>\n            );\n          })}\n        </View>\n\n        <View style={[s.card, { borderColor: chosen.color + '55' }]}>\n          <Text style={[s.cardBig, { color: chosen.color }]}>{chosen.face}</Text>\n          <Text style={s.cardLabel}>Feeling {sel}</Text>\n          <Text style={s.cardNote}>Tap a face to update today. Your reflection is saved privately.</Text>\n        </View>\n\n        <Text style={s.section}>This week</Text>\n        <View style={s.week}>\n          {WEEK.map((w, i) => (\n            <View key={i} style={s.dayCol}>\n              <View style={[s.daySwatch, { backgroundColor: w.c }]} />\n              <Text style={s.dayLabel}>{w.d}</Text>\n            </View>\n          ))}\n        </View>\n\n        <View style={s.insight}>\n          <Text style={s.insightTitle}>🌈 Brighter midweek</Text>\n          <Text style={s.insightBody}>Your best days landed on Wednesday and Thursday this week.</Text>\n        </View>\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0E0D14' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#FFB020', fontSize: 12, fontWeight: '700', letterSpacing: 1.5 },\n  h1: { color: '#fff', fontSize: 30, fontWeight: '800', marginTop: 4 },\n  moodRow: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 26 },\n  mood: { width: 58, height: 58, borderRadius: 29, backgroundColor: '#191824', borderWidth: 2, borderColor: 'transparent', alignItems: 'center', justifyContent: 'center' },\n  face: { fontSize: 28 },\n  card: { backgroundColor: '#15131F', borderRadius: 22, borderWidth: 1, padding: 24, marginTop: 26, alignItems: 'center' },\n  cardBig: { fontSize: 60 },\n  cardLabel: { color: '#fff', fontSize: 20, fontWeight: '700', marginTop: 10, textTransform: 'capitalize' },\n  cardNote: { color: '#8A8A99', fontSize: 14, textAlign: 'center', marginTop: 8, lineHeight: 20 },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginTop: 30, marginBottom: 14 },\n  week: { flexDirection: 'row', justifyContent: 'space-between' },\n  dayCol: { alignItems: 'center' },\n  daySwatch: { width: 34, height: 56, borderRadius: 12 },\n  dayLabel: { color: '#6A6A78', fontSize: 13, marginTop: 8 },\n  insight: { backgroundColor: '#15131F', borderRadius: 18, padding: 18, marginTop: 26 },\n  insightTitle: { color: '#fff', fontSize: 15, fontWeight: '700' },\n  insightBody: { color: '#8A8A99', fontSize: 14, marginTop: 6, lineHeight: 20 },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/3dfd8041-4f25-4805-a1ce-909e1786f6a5/full.webp","width":1206,"height":2622,"lqip":"xwcGCwAqiwanm4aCBp03sIk=","variants":{"avif":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/3dfd8041-4f25-4805-a1ce-909e1786f6a5/avif.avif","card":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/3dfd8041-4f25-4805-a1ce-909e1786f6a5/card.webp","full":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/3dfd8041-4f25-4805-a1ce-909e1786f6a5/full.webp","thumb":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/3dfd8041-4f25-4805-a1ce-909e1786f6a5/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/cddba350-622b-4933-b5c0-d0c4cba88065/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/cddba350-622b-4933-b5c0-d0c4cba88065/card.webp","light_full":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/cddba350-622b-4933-b5c0-d0c4cba88065/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/cddba350-622b-4933-b5c0-d0c4cba88065/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/4/1d6ff0b7-ed87-43ce-94d0-5abeb1543066/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/4/1d6ff0b7-ed87-43ce-94d0-5abeb1543066/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/4/1d6ff0b7-ed87-43ce-94d0-5abeb1543066/clip.webm","poster":"https://storage.vp0.com/vp0/clips/4/1d6ff0b7-ed87-43ce-94d0-5abeb1543066/poster.jpg"}}],"screens":[],"dependencies":{},"devDependencies":{},"componentsUsed":[],"notes":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","importUrl":"https://vp0.com/source/tide-mood-journal","manifestUrl":"https://api.vp0.com/designs/tide-mood-journal/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Tide — Mood Journal\").\nIntegrate it into the user's Expo project as follows:\n1. No extra dependencies are required.\n2. Create the following file(s) and paste each provided \"content\" exactly:\n   - App.tsx\n3. Render the exported component from a screen (e.g. app/(tabs)/index.tsx). It targets iOS — keep SafeAreaView / safe-area insets and the existing styling.\n4. These are UI starters: reproduce the visual layout faithfully, then wire the user's own data/navigation/backend afterward.","promptText":"Build this iOS app design in my project: \"Tide — Mood Journal\" — Log how you feel with a tap and watch your week take shape in color..\n1. Fetch https://api.vp0.com/designs/tide-mood-journal/manifest — a JSON manifest whose files[] array contains EVERY source file inline (path + content).\n2. Create each file at its exact files[].path and paste its content VERBATIM. Do not re-imagine or restyle the UI — the provided code IS the design.\n3. Install dependencies exactly as given by the manifest's installCommand field (skip if null).\n4. Render the entry component (targets[].entrypoint) from a screen. Keep SafeAreaView / safe-area insets and the existing styling untouched.\n5. It is a UI starter: once it renders pixel-perfect, wire my own data, navigation and backend on top.\nHuman-readable source page: https://vp0.com/source/tide-mood-journal"}