{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.circle-community","title":"Circle — Community","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Social","Community"],"styleTags":["Dark"],"category":"Community","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.787Z","updatedAt":"2026-05-25T20:17:18.787Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/circle-community.json","cli":"npx vp0com add circle-community --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/circle-community.json","downloadExpo":"https://api.vp0.com/export/circle-community/expo.zip"},"sourceHash":"sha256:43f81500c5b3a7b63e9c48f9b379b42b267c4af89cea19be670a57d080d058ef","meta":{"com.vp0.contentId":"2e2ad39c-1459-435d-87d7-f4974a2788b7","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":"Community","com.vp0.sourceToken":"vp0_5e10286ea9ac0d3296353e16","com.vp0.sourceHash":"sha256:43f81500c5b3a7b63e9c48f9b379b42b267c4af89cea19be670a57d080d058ef","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"circle-community","slug":"circle-community","sourceToken":"vp0_5e10286ea9ac0d3296353e16","contentType":"template","platform":"ios","description":"A friendly community feed with posts, reactions, and replies.","createdBy":"vp0","tags":["Dark","Social","Community"],"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/circle-community/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 POSTS = [\n  { id: 1, who: 'Aria', av: '🦋', when: '2h', text: 'Shipped my first app this weekend. Tiny, but it is live and I am proud!', likes: 42, replies: 8 },\n  { id: 2, who: 'Ken', av: '🐢', when: '5h', text: 'What is everyone reading lately? Looking for something on focus.', likes: 17, replies: 23 },\n  { id: 3, who: 'Mira', av: '🌙', when: '1d', text: 'Friendly reminder to drink water and take a walk today. 💚', likes: 88, replies: 5 },\n];\n\nexport default function App() {\n  const [liked, setLiked] = useState<Record<number, boolean>>({});\n  return (\n    <SafeAreaView style={s.safe}>\n      <View style={s.head}><Text style={s.h1}>Makers Circle</Text><View style={s.avatarMe}><Text>🙂</Text></View></View>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        {POSTS.map((p) => {\n          const on = liked[p.id];\n          return (\n            <View key={p.id} style={s.card}>\n              <View style={s.cardHead}>\n                <View style={s.av}><Text style={{ fontSize: 20 }}>{p.av}</Text></View>\n                <View><Text style={s.who}>{p.who}</Text><Text style={s.when}>{p.when} ago</Text></View>\n              </View>\n              <Text style={s.text}>{p.text}</Text>\n              <View style={s.actions}>\n                <Pressable onPress={() => setLiked((l) => ({ ...l, [p.id]: !l[p.id] }))} style={s.action}>\n                  <Text style={[s.actionIcon, on && { color: '#FF6B9D' }]}>{on ? '♥' : '♡'}</Text>\n                  <Text style={s.actionText}>{p.likes + (on ? 1 : 0)}</Text>\n                </Pressable>\n                <View style={s.action}><Text style={s.actionIcon}>💬</Text><Text style={s.actionText}>{p.replies}</Text></View>\n                <View style={s.action}><Text style={s.actionIcon}>↗</Text></View>\n              </View>\n            </View>\n          );\n        })}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0C0A12' },\n  head: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingTop: 58, paddingHorizontal: 22, paddingBottom: 12 },\n  h1: { color: '#fff', fontSize: 26, fontWeight: '800' },\n  avatarMe: { width: 38, height: 38, borderRadius: 19, backgroundColor: '#1A1626', alignItems: 'center', justifyContent: 'center' },\n  scroll: { padding: 18 },\n  card: { backgroundColor: '#15111E', borderRadius: 20, padding: 18, marginBottom: 14 },\n  cardHead: { flexDirection: 'row', alignItems: 'center', marginBottom: 12 },\n  av: { width: 42, height: 42, borderRadius: 21, backgroundColor: '#211A33', alignItems: 'center', justifyContent: 'center', marginRight: 12 },\n  who: { color: '#fff', fontSize: 16, fontWeight: '700' },\n  when: { color: '#7A6E96', fontSize: 13, marginTop: 2 },\n  text: { color: '#DAD2EC', fontSize: 16, lineHeight: 23 },\n  actions: { flexDirection: 'row', gap: 26, marginTop: 16 },\n  action: { flexDirection: 'row', alignItems: 'center', gap: 7 },\n  actionIcon: { color: '#9A8CC0', fontSize: 18 },\n  actionText: { color: '#9A8CC0', fontSize: 14, fontWeight: '600' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/c885c4da-b31b-4fa4-bb86-ead5aec0a05a/full.webp","width":1206,"height":2622,"lqip":"hgcCAwBtnAeXiXN2qHePpwc=","variants":{"avif":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/c885c4da-b31b-4fa4-bb86-ead5aec0a05a/avif.avif","card":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/c885c4da-b31b-4fa4-bb86-ead5aec0a05a/card.webp","full":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/c885c4da-b31b-4fa4-bb86-ead5aec0a05a/full.webp","thumb":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/c885c4da-b31b-4fa4-bb86-ead5aec0a05a/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/54d19584-6823-4c2c-b72a-726db6e6972c/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/54d19584-6823-4c2c-b72a-726db6e6972c/card.webp","light_full":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/54d19584-6823-4c2c-b72a-726db6e6972c/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/54d19584-6823-4c2c-b72a-726db6e6972c/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/43/263ed616-01aa-4870-9676-d57e9a3966fb/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/43/263ed616-01aa-4870-9676-d57e9a3966fb/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/43/263ed616-01aa-4870-9676-d57e9a3966fb/clip.webm","poster":"https://storage.vp0.com/vp0/clips/43/263ed616-01aa-4870-9676-d57e9a3966fb/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/circle-community","manifestUrl":"https://api.vp0.com/designs/circle-community/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Circle — Community\").\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: \"Circle — Community\" — A friendly community feed with posts, reactions, and replies..\n1. Fetch https://api.vp0.com/designs/circle-community/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/circle-community"}