{"$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 vp0 add cadence-calendar --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/cadence-calendar.json"},"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/6a6b04dd-7aac-4e37-817c-8d9fe448b302/full.webp","width":804,"height":1748,"lqip":"xAcCAwBdv4aHdYY1jRGw87s=","variants":{"avif":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/6a6b04dd-7aac-4e37-817c-8d9fe448b302/avif.avif","card":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/6a6b04dd-7aac-4e37-817c-8d9fe448b302/card.webp","full":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/6a6b04dd-7aac-4e37-817c-8d9fe448b302/full.webp","thumb":"https://storage.vp0.com/vp0/covers/6b037839-8e5a-4591-8af0-8b9aa3d02936/6a6b04dd-7aac-4e37-817c-8d9fe448b302/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/26/67f9a4e4-74b0-4ac6-aa2a-3a2148357a51/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/26/67f9a4e4-74b0-4ac6-aa2a-3a2148357a51/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/26/67f9a4e4-74b0-4ac6-aa2a-3a2148357a51/clip.webm","poster":"https://storage.vp0.com/vp0/clips/26/67f9a4e4-74b0-4ac6-aa2a-3a2148357a51/poster.jpg"}}],"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":"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/cadence-calendar (machine-readable JSON manifest: https://api.vp0.com/designs/cadence-calendar/manifest). Design: \"Cadence — Agenda\" — A week strip and agenda list to keep the day flowing.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward."}