{"id":"vp0.tide-mood-journal","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.","kind":"app_template","meta":{"com.vp0.kind":"app_template","com.vp0.category":"Mood Tracking","com.vp0.platform":"ios","com.vp0.contentId":"203a8162-8ea0-4a49-8ddd-d8d4e1ab8255","com.vp0.simulator":{"target":"react-native","embedUrl":null,"provider":null,"entrypoint":"App.tsx","buildStatus":null,"simulatable":true},"com.vp0.sourceHash":"sha256:4e41b85cb80237910e4a35eacba375e888ede918874e3f531a3b57945036c9e7","com.vp0.contentType":"template","com.vp0.sourceToken":"vp0_f5dabb2534b5af7ebd9b84b9","com.vp0.defaultLanguage":"react-native","com.vp0.availableLanguages":["react-native"]},"name":"tide-mood-journal","slug":"tide-mood-journal","tags":["Journaling","Mood Tracking","Colorful"],"type":"registry:block","files":[{"path":"App.tsx","type":"registry:page","rawUrl":"https://api.vp0.com/designs/tide-mood-journal/raw?language=react-native&path=App.tsx","target":"app/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","language":"react-native"}],"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.","title":"Tide — Mood Journal","assets":[{"url":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/2c521eef-ea8e-42c8-886b-b7ddd3bb8b8b/full.webp","kind":"cover","lqip":"xwcGCwAqiwanm4aCBp03sIk=","width":804,"height":1748,"variants":{"avif":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/2c521eef-ea8e-42c8-886b-b7ddd3bb8b8b/avif.avif","card":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/2c521eef-ea8e-42c8-886b-b7ddd3bb8b8b/card.webp","full":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/2c521eef-ea8e-42c8-886b-b7ddd3bb8b8b/full.webp","thumb":"https://storage.vp0.com/vp0/covers/203a8162-8ea0-4a49-8ddd-d8d4e1ab8255/2c521eef-ea8e-42c8-886b-b7ddd3bb8b8b/thumb.webp"}},{"url":"https://storage.vp0.com/vp0/clips/4/397399a3-b36d-4710-978f-fb1ecd8414ef/clip.mp4","kind":"video","variants":{"mp4":"https://storage.vp0.com/vp0/clips/4/397399a3-b36d-4710-978f-fb1ecd8414ef/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/4/397399a3-b36d-4710-978f-fb1ecd8414ef/clip.webm","poster":"https://storage.vp0.com/vp0/clips/4/397399a3-b36d-4710-978f-fb1ecd8414ef/poster.jpg"}}],"author":"@vp0","$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","license":null,"targets":[{"name":"react-native","entrypoint":"App.tsx"}],"version":"1.0.0","category":"Mood Tracking","platform":"ios","createdAt":"2026-05-25T19:40:48.808Z","createdBy":"vp0","importUrl":"https://vp0.com/source/tide-mood-journal","styleTags":["Colorful"],"updatedAt":"2026-05-25T19:40:48.808Z","categories":["Journaling","Mood Tracking"],"promptText":"Recreate this iOS app design in my Expo React Native project. Fetch the full source, dependencies, and step-by-step integration instructions from https://vp0.com/source/tide-mood-journal (machine-readable JSON manifest: https://api.vp0.com/designs/tide-mood-journal/manifest). Design: \"Tide — Mood Journal\" — Log how you feel with a tap and watch your week take shape in color.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward.","sourceHash":"sha256:4e41b85cb80237910e4a35eacba375e888ede918874e3f531a3b57945036c9e7","contentType":"template","description":"Log how you feel with a tap and watch your week take shape in color.","manifestUrl":"https://api.vp0.com/designs/tide-mood-journal/manifest","sourceToken":"vp0_f5dabb2534b5af7ebd9b84b9","dependencies":{},"installHints":{"cli":"npx vp0 add tide-mood-journal --target 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","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/tide-mood-journal.json","defaultTarget":"react-native"},"schemaVersion":"vp0-bundle.v1","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.","componentsUsed":[],"installCommand":null,"defaultLanguage":"react-native","devDependencies":{},"availableLanguages":["react-native"],"registryDependencies":[]}