{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.cadence-calendar","title":"Cadence — Agenda","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Calendar"],"styleTags":["Dark","Planner"],"category":"Calendar","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:49.470Z","updatedAt":"2026-05-25T19:40:49.470Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/cadence-calendar.json","cli":"npx vp0com add cadence-calendar --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/cadence-calendar.json","downloadExpo":"https://api.vp0.com/export/cadence-calendar/expo.zip"},"sourceHash":"sha256:3bef92542c3de103f027ed04928dc619cca25a6ac483d09659be06ee1a0dfcea","meta":{"com.vp0.contentId":"6b037839-8e5a-4591-8af0-8b9aa3d02936","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":"Calendar","com.vp0.sourceToken":"vp0_f7b235e03a1797c25bace444","com.vp0.sourceHash":"sha256:3bef92542c3de103f027ed04928dc619cca25a6ac483d09659be06ee1a0dfcea","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"cadence-calendar","slug":"cadence-calendar","sourceToken":"vp0_f7b235e03a1797c25bace444","contentType":"template","platform":"ios","description":"A week strip and agenda list to keep the day flowing.","createdBy":"vp0","tags":["Dark","Calendar","Planner"],"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/cadence-calendar/raw?language=react-native&path=App.tsx","content":"import React, { useState } from 'react';\nimport { View, Text, ScrollView, Pressable, StyleSheet, SafeAreaView } from 'react-native';\n\nconst WEEK = [\n  { d: 'M', n: 12 }, { d: 'T', n: 13 }, { d: 'W', n: 14 }, { d: 'T', n: 15 }, { d: 'F', n: 16 }, { d: 'S', n: 17 }, { d: 'S', n: 18 },\n];\nconst AGENDA = [\n  { time: '09:30', title: 'Design sync', tag: 'Work', c: '#EC4899' },\n  { time: '11:00', title: 'Dentist', tag: 'Personal', c: '#60A5FA' },\n  { time: '13:00', title: 'Lunch with Sam', tag: 'Social', c: '#34D399' },\n  { time: '16:30', title: 'Gym session', tag: 'Health', c: '#FBBF24' },\n];\n\nexport default function App() {\n  const [sel, setSel] = useState(14);\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>MAY 2026</Text>\n        <Text style={s.h1}>Wednesday</Text>\n        <View style={s.week}>\n          {WEEK.map((w) => {\n            const on = w.n === sel;\n            return (\n              <Pressable key={w.n} onPress={() => setSel(w.n)} style={[s.day, on && s.dayOn]}>\n                <Text style={[s.dayL, on && { color: '#fff' }]}>{w.d}</Text>\n                <Text style={[s.dayN, on && { color: '#fff' }]}>{w.n}</Text>\n              </Pressable>\n            );\n          })}\n        </View>\n        <Text style={s.section}>Agenda</Text>\n        {AGENDA.map((a, i) => (\n          <View key={i} style={s.row}>\n            <Text style={s.time}>{a.time}</Text>\n            <View style={[s.bar, { backgroundColor: a.c }]} />\n            <View style={{ flex: 1 }}>\n              <Text style={s.title}>{a.title}</Text>\n              <Text style={[s.tag, { color: a.c }]}>{a.tag}</Text>\n            </View>\n          </View>\n        ))}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0D0A0C' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#EC4899', fontSize: 12, fontWeight: '700', letterSpacing: 2 },\n  h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4, marginBottom: 22 },\n  week: { flexDirection: 'row', justifyContent: 'space-between' },\n  day: { width: 42, paddingVertical: 12, borderRadius: 16, alignItems: 'center', backgroundColor: '#161214' },\n  dayOn: { backgroundColor: '#EC4899' },\n  dayL: { color: '#9A8090', fontSize: 12, fontWeight: '600' },\n  dayN: { color: '#EDEDF2', fontSize: 17, fontWeight: '700', marginTop: 4 },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginTop: 30, marginBottom: 14 },\n  row: { flexDirection: 'row', alignItems: 'center', marginBottom: 18 },\n  time: { color: '#9A8090', fontSize: 14, fontWeight: '600', width: 52 },\n  bar: { width: 4, height: 40, borderRadius: 2, marginRight: 14 },\n  title: { color: '#fff', fontSize: 16, fontWeight: '600' },\n  tag: { fontSize: 13, marginTop: 3, fontWeight: '600' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/5bd9d604-777c-4864-8439-8070e647c647/full.webp","width":1206,"height":2622,"lqip":"xAcCAwBdv4aHdYY1fgGw87s=","variants":{"avif":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/5bd9d604-777c-4864-8439-8070e647c647/avif.avif","card":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/5bd9d604-777c-4864-8439-8070e647c647/card.webp","full":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/5bd9d604-777c-4864-8439-8070e647c647/full.webp","thumb":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/5bd9d604-777c-4864-8439-8070e647c647/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/502a3ed7-69dd-4de5-b404-5fa237f4606a/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/502a3ed7-69dd-4de5-b404-5fa237f4606a/card.webp","light_full":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/502a3ed7-69dd-4de5-b404-5fa237f4606a/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/502a3ed7-69dd-4de5-b404-5fa237f4606a/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/26/138013bb-bc21-49b8-bfe2-8e1ea8bc2b7a/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/26/138013bb-bc21-49b8-bfe2-8e1ea8bc2b7a/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/26/138013bb-bc21-49b8-bfe2-8e1ea8bc2b7a/clip.webm","poster":"https://storage.vp0.com/vp0/clips/26/138013bb-bc21-49b8-bfe2-8e1ea8bc2b7a/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/cadence-calendar","manifestUrl":"https://api.vp0.com/designs/cadence-calendar/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Cadence — Agenda\").\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: \"Cadence — Agenda\" — A week strip and agenda list to keep the day flowing..\n1. Fetch https://api.vp0.com/designs/cadence-calendar/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/cadence-calendar"}