{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.mentor-coaching","title":"Mentor — Coaching","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Coaching"],"styleTags":["Dark","Motivation"],"category":"Coaching","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-25T20:17:18.609Z","updatedAt":"2026-05-25T20:17:18.609Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/mentor-coaching.json","cli":"npx vp0com add mentor-coaching --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/mentor-coaching.json","downloadExpo":"https://api.vp0.com/export/mentor-coaching/expo.zip"},"sourceHash":"sha256:bb37425e041686fedc40b9d77b4af557d4a8884a5e3fe65230d4c6c7897214bc","meta":{"com.vp0.contentId":"40e117ee-a293-437b-b8de-0ed98030a8da","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":"Coaching","com.vp0.sourceToken":"vp0_71fd0d8f789c071b17965ee5","com.vp0.sourceHash":"sha256:bb37425e041686fedc40b9d77b4af557d4a8884a5e3fe65230d4c6c7897214bc","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"mentor-coaching","slug":"mentor-coaching","sourceToken":"vp0_71fd0d8f789c071b17965ee5","contentType":"template","platform":"ios","description":"A coaching home with your next session, focus areas, and action items.","createdBy":"vp0","tags":["Dark","Coaching","Motivation"],"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/mentor-coaching/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 ACTIONS = [\n  { id: 1, text: 'Draft the Q3 vision doc', done: false },\n  { id: 2, text: 'Schedule 1:1s with the team', done: true },\n  { id: 3, text: 'Read two chapters of Deep Work', done: false },\n];\n\nexport default function App() {\n  const [items, setItems] = useState(ACTIONS);\n  const toggle = (id) => setItems((xs) => xs.map((x) => (x.id === id ? { ...x, done: !x.done } : x)));\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>YOUR COACH · DANA</Text>\n        <View style={s.session}>\n          <Text style={s.sessionLabel}>NEXT SESSION</Text>\n          <Text style={s.sessionTitle}>Leadership clarity</Text>\n          <Text style={s.sessionTime}>Thursday · 3:00 PM · 45 min</Text>\n          <View style={s.join}><Text style={s.joinText}>Join call</Text></View>\n        </View>\n        <Text style={s.section}>Focus areas</Text>\n        <View style={s.areas}>\n          {[['Confidence', 72], ['Delegation', 48], ['Focus', 85]].map(([n, p]) => (\n            <View key={n} style={s.area}>\n              <Text style={s.areaName}>{n}</Text>\n              <View style={s.track}><View style={[s.fill, { width: p + '%' }]} /></View>\n            </View>\n          ))}\n        </View>\n        <Text style={s.section}>Action items</Text>\n        {items.map((it) => (\n          <Pressable key={it.id} onPress={() => toggle(it.id)} style={s.row}>\n            <View style={[s.check, it.done && s.checkOn]}>{it.done ? <Text style={s.checkM}>✓</Text> : null}</View>\n            <Text style={[s.rowText, it.done && s.rowDone]}>{it.text}</Text>\n          </Pressable>\n        ))}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#100B06' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#F0A93B', fontSize: 12, fontWeight: '700', letterSpacing: 2 },\n  session: { backgroundColor: '#1B1207', borderRadius: 22, padding: 22, marginTop: 14, borderWidth: 1, borderColor: '#33260F' },\n  sessionLabel: { color: '#F0A93B', fontSize: 11, fontWeight: '700', letterSpacing: 1.5 },\n  sessionTitle: { color: '#fff', fontSize: 24, fontWeight: '800', marginTop: 8 },\n  sessionTime: { color: '#BFA071', fontSize: 15, marginTop: 6 },\n  join: { backgroundColor: '#F0A93B', borderRadius: 14, paddingVertical: 13, alignItems: 'center', marginTop: 18 },\n  joinText: { color: '#2A1C08', fontSize: 16, fontWeight: '800' },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginTop: 28, marginBottom: 14 },\n  areas: { gap: 14 },\n  area: { },\n  areaName: { color: '#D8C4A2', fontSize: 14, fontWeight: '600', marginBottom: 8 },\n  track: { height: 9, borderRadius: 5, backgroundColor: '#231a0e', overflow: 'hidden' },\n  fill: { height: '100%', backgroundColor: '#F0A93B', borderRadius: 5 },\n  row: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#160F08', borderRadius: 14, padding: 16, marginBottom: 10 },\n  check: { width: 26, height: 26, borderRadius: 8, borderWidth: 2, borderColor: '#3A2C14', alignItems: 'center', justifyContent: 'center', marginRight: 14 },\n  checkOn: { backgroundColor: '#F0A93B', borderColor: '#F0A93B' },\n  checkM: { color: '#2A1C08', fontWeight: '900' },\n  rowText: { color: '#E6D8C0', fontSize: 15, flex: 1, fontWeight: '500' },\n  rowDone: { color: '#6E5C3E', textDecorationLine: 'line-through' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/dd3d2cd5-63f7-4b42-a8b9-f2228f154188/full.webp","width":1206,"height":2622,"lqip":"hhgGCwJLjzaGcoBCSo+U9Eg=","variants":{"avif":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/dd3d2cd5-63f7-4b42-a8b9-f2228f154188/avif.avif","card":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/dd3d2cd5-63f7-4b42-a8b9-f2228f154188/card.webp","full":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/dd3d2cd5-63f7-4b42-a8b9-f2228f154188/full.webp","thumb":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/dd3d2cd5-63f7-4b42-a8b9-f2228f154188/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/35dc25a4-e2a9-45d0-9706-45aa6d7faca7/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/35dc25a4-e2a9-45d0-9706-45aa6d7faca7/card.webp","light_full":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/35dc25a4-e2a9-45d0-9706-45aa6d7faca7/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/40e117ee-a293-437b-b8de-0ed98030a8da/35dc25a4-e2a9-45d0-9706-45aa6d7faca7/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/41/5cfcccec-e1a0-47c7-a5ec-e8f2d0c51ec6/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/41/5cfcccec-e1a0-47c7-a5ec-e8f2d0c51ec6/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/41/5cfcccec-e1a0-47c7-a5ec-e8f2d0c51ec6/clip.webm","poster":"https://storage.vp0.com/vp0/clips/41/5cfcccec-e1a0-47c7-a5ec-e8f2d0c51ec6/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/mentor-coaching","manifestUrl":"https://api.vp0.com/designs/mentor-coaching/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Mentor — Coaching\").\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: \"Mentor — Coaching\" — A coaching home with your next session, focus areas, and action items..\n1. Fetch https://api.vp0.com/designs/mentor-coaching/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/mentor-coaching"}