{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.glow-skincare","title":"Glow — Skincare","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Skincare","Beauty"],"styleTags":["Soft"],"category":"Skincare","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.189Z","updatedAt":"2026-05-25T19:40:49.189Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/glow-skincare.json","cli":"npx vp0com add glow-skincare --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/glow-skincare.json","downloadExpo":"https://api.vp0.com/export/glow-skincare/expo.zip"},"sourceHash":"sha256:b1c823f7434668f891238af714fffb395646971f6a5a1a71f89eabc2575ac64c","meta":{"com.vp0.contentId":"0eaf7b0b-da36-4591-b622-80a3d725514c","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":"Skincare","com.vp0.sourceToken":"vp0_08358a3c8ee6df6be5a5e833","com.vp0.sourceHash":"sha256:b1c823f7434668f891238af714fffb395646971f6a5a1a71f89eabc2575ac64c","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"glow-skincare","slug":"glow-skincare","sourceToken":"vp0_08358a3c8ee6df6be5a5e833","contentType":"template","platform":"ios","description":"Your morning and evening skincare routine, step by step.","createdBy":"vp0","tags":["Skincare","Beauty","Soft"],"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/glow-skincare/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 ROUTINES = {\n  AM: [\n    { step: 'Cleanser', note: 'Gentle gel', icon: '🧴' },\n    { step: 'Vitamin C', note: '10% serum', icon: '🍊' },\n    { step: 'Moisturizer', note: 'Lightweight', icon: '💧' },\n    { step: 'SPF 50', note: 'Always', icon: '☀️' },\n  ],\n  PM: [\n    { step: 'Cleanser', note: 'Oil + gel', icon: '🧼' },\n    { step: 'Retinol', note: '0.3%', icon: '🌙' },\n    { step: 'Night cream', note: 'Rich', icon: '🌿' },\n  ],\n};\n\nexport default function App() {\n  const [tab, setTab] = useState('AM');\n  const [done, setDone] = useState<Record<string, boolean>>({});\n  const list = ROUTINES[tab];\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>YOUR ROUTINE</Text>\n        <View style={s.tabs}>\n          {['AM', 'PM'].map((t) => (\n            <Pressable key={t} onPress={() => setTab(t)} style={[s.tab, tab === t && s.tabOn]}>\n              <Text style={[s.tabText, tab === t && s.tabTextOn]}>{t === 'AM' ? '☀️ Morning' : '🌙 Evening'}</Text>\n            </Pressable>\n          ))}\n        </View>\n        {list.map((r, i) => {\n          const key = tab + i;\n          const on = done[key];\n          return (\n            <Pressable key={key} onPress={() => setDone((d) => ({ ...d, [key]: !d[key] }))} style={s.row}>\n              <View style={s.num}><Text style={s.numT}>{i + 1}</Text></View>\n              <Text style={s.rowIcon}>{r.icon}</Text>\n              <View style={{ flex: 1 }}>\n                <Text style={[s.step, on && s.stepDone]}>{r.step}</Text>\n                <Text style={s.note}>{r.note}</Text>\n              </View>\n              <View style={[s.check, on && s.checkOn]}>{on ? <Text style={s.checkM}>✓</Text> : null}</View>\n            </Pressable>\n          );\n        })}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#140E11' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#F5A3B8', fontSize: 12, fontWeight: '700', letterSpacing: 2, marginBottom: 16 },\n  tabs: { flexDirection: 'row', backgroundColor: '#1E141A', borderRadius: 16, padding: 5, marginBottom: 22 },\n  tab: { flex: 1, paddingVertical: 12, borderRadius: 12, alignItems: 'center' },\n  tabOn: { backgroundColor: '#F5A3B8' },\n  tabText: { color: '#B98DA0', fontSize: 15, fontWeight: '700' },\n  tabTextOn: { color: '#2A1620' },\n  row: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#1A1117', borderRadius: 16, padding: 16, marginBottom: 12 },\n  num: { width: 26, height: 26, borderRadius: 13, backgroundColor: '#2A1B24', alignItems: 'center', justifyContent: 'center', marginRight: 12 },\n  numT: { color: '#F5A3B8', fontSize: 13, fontWeight: '800' },\n  rowIcon: { fontSize: 24, marginRight: 14 },\n  step: { color: '#F3E2E8', fontSize: 17, fontWeight: '600' },\n  stepDone: { color: '#7A6670', textDecorationLine: 'line-through' },\n  note: { color: '#A6889A', fontSize: 13, marginTop: 2 },\n  check: { width: 28, height: 28, borderRadius: 14, borderWidth: 2, borderColor: '#3A2A34', alignItems: 'center', justifyContent: 'center' },\n  checkOn: { backgroundColor: '#F5A3B8', borderColor: '#F5A3B8' },\n  checkM: { color: '#2A1620', fontWeight: '900' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/8945bd0d-8fd4-4f63-8c00-6b032422686a/full.webp","width":1206,"height":2622,"lqip":"BhgGAwBsv5aJh3c1j8299qs=","variants":{"avif":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/8945bd0d-8fd4-4f63-8c00-6b032422686a/avif.avif","card":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/8945bd0d-8fd4-4f63-8c00-6b032422686a/card.webp","full":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/8945bd0d-8fd4-4f63-8c00-6b032422686a/full.webp","thumb":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/8945bd0d-8fd4-4f63-8c00-6b032422686a/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/84ea8abb-8199-42e0-b075-3e04345f2780/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/84ea8abb-8199-42e0-b075-3e04345f2780/card.webp","light_full":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/84ea8abb-8199-42e0-b075-3e04345f2780/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/0eaf7b0b-da36-4591-b622-80a3d725514c/84ea8abb-8199-42e0-b075-3e04345f2780/thumb.webp"}},{"kind":"screenshot","url":"https://storage.vp0.com/vp0/screens/0eaf7b0b-da36-4591-b622-80a3d725514c/4e852e06-8e20-4775-b0ac-86f5340309a4/screen-0.png","width":804,"height":1748,"alt":"(root)"},{"kind":"screenshot","url":"https://storage.vp0.com/vp0/screens/0eaf7b0b-da36-4591-b622-80a3d725514c/4e852e06-8e20-4775-b0ac-86f5340309a4/screen-1.png","width":804,"height":1748,"alt":"view-2"},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/16/8b18ebbc-0d44-41b5-b26b-bd8b55a4d13c/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/16/8b18ebbc-0d44-41b5-b26b-bd8b55a4d13c/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/16/8b18ebbc-0d44-41b5-b26b-bd8b55a4d13c/clip.webm","poster":"https://storage.vp0.com/vp0/clips/16/8b18ebbc-0d44-41b5-b26b-bd8b55a4d13c/poster.jpg"}}],"screens":[{"name":"(root)","image":"https://storage.vp0.com/vp0/screens/0eaf7b0b-da36-4591-b622-80a3d725514c/4e852e06-8e20-4775-b0ac-86f5340309a4/screen-0.png","order":0},{"name":"view-2","image":"https://storage.vp0.com/vp0/screens/0eaf7b0b-da36-4591-b622-80a3d725514c/4e852e06-8e20-4775-b0ac-86f5340309a4/screen-1.png","order":1}],"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/glow-skincare","manifestUrl":"https://api.vp0.com/designs/glow-skincare/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Glow — Skincare\").\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: \"Glow — Skincare\" — Your morning and evening skincare routine, step by step..\n1. Fetch https://api.vp0.com/designs/glow-skincare/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/glow-skincare"}