{"$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 vp0 add circle-community --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/circle-community.json"},"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/05e7db4b-d5f3-4076-95bc-e99d2d0272b9/full.webp","width":804,"height":1748,"lqip":"hgcCAwBtnAeXiXN2qHePpwc=","variants":{"avif":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/05e7db4b-d5f3-4076-95bc-e99d2d0272b9/avif.avif","card":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/05e7db4b-d5f3-4076-95bc-e99d2d0272b9/card.webp","full":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/05e7db4b-d5f3-4076-95bc-e99d2d0272b9/full.webp","thumb":"https://storage.vp0.com/vp0/covers/2e2ad39c-1459-435d-87d7-f4974a2788b7/05e7db4b-d5f3-4076-95bc-e99d2d0272b9/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/43/da01bc22-f9f2-413d-8137-ada0e760eee3/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/43/da01bc22-f9f2-413d-8137-ada0e760eee3/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/43/da01bc22-f9f2-413d-8137-ada0e760eee3/clip.webm","poster":"https://storage.vp0.com/vp0/clips/43/da01bc22-f9f2-413d-8137-ada0e760eee3/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/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":"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/circle-community (machine-readable JSON manifest: https://api.vp0.com/designs/circle-community/manifest). Design: \"Circle — Community\" — A friendly community feed with posts, reactions, and replies.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward."}