{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.nova-ai-assistant","title":"Nova — AI Assistant","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["AI"],"styleTags":["Dark","Chat"],"category":"AI","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.340Z","updatedAt":"2026-05-25T20:17:18.340Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/nova-ai-assistant.json","cli":"npx vp0 add nova-ai-assistant --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/nova-ai-assistant.json"},"sourceHash":"sha256:8ac382e2215b49023f0bc191c9eadb6cdbbd366e8386ba5dbf431fad96b9c359","meta":{"com.vp0.contentId":"82408d14-1092-4fa3-947d-89be1ef6a758","com.vp0.platform":"ios","com.vp0.availableLanguages":["react-native","swiftui"],"com.vp0.defaultLanguage":"react-native","com.vp0.contentType":"template","com.vp0.kind":"app_template","com.vp0.category":"AI","com.vp0.sourceToken":"vp0_46f98a06154d472e85e2c4b9","com.vp0.sourceHash":"sha256:8ac382e2215b49023f0bc191c9eadb6cdbbd366e8386ba5dbf431fad96b9c359","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"nova-ai-assistant","slug":"nova-ai-assistant","sourceToken":"vp0_46f98a06154d472e85e2c4b9","contentType":"template","platform":"ios","description":"A clean AI chat assistant with suggestion chips and a typing reply.","createdBy":"vp0","tags":["Dark","Chat","AI"],"availableLanguages":["react-native","swiftui"],"defaultLanguage":"react-native","targets":[{"name":"react-native","entrypoint":"App.tsx"},{"name":"swiftui","entrypoint":"AssistantView.swift"}],"files":[{"language":"react-native","path":"App.tsx","type":"registry:page","target":"app/App.tsx","rawUrl":"https://api.vp0.com/designs/nova-ai-assistant/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 CHIPS = ['Plan my week', 'Summarize this', 'Write an email', 'Brainstorm ideas'];\n\nexport default function App() {\n  const [msgs, setMsgs] = useState([\n    { me: false, text: 'Hi! I am Nova. What can I help you with today?' },\n    { me: true, text: 'Help me plan a focused work week.' },\n    { me: false, text: 'Love it. Here is a simple plan: protect your mornings for deep work, batch meetings after lunch, and keep Fridays light for review.' },\n    { me: true, text: 'Perfect, can you add reminders?' },\n    { me: false, text: 'Done. I will nudge you 10 minutes before each deep-work block and at 4pm on Friday for your weekly review.' },\n  ]);\n  const ask = (q) => setMsgs((m) => [...m, { me: true, text: q }, { me: false, text: 'Great choice. Here is a quick plan to get you started, broken into three simple steps.' }]);\n  return (\n    <SafeAreaView style={s.safe}>\n      <View style={s.head}>\n        <View style={s.avatar}><Text style={{ fontSize: 18 }}>🤖</Text></View>\n        <View><Text style={s.name}>Nova</Text><Text style={s.status}>● Online</Text></View>\n      </View>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        {msgs.map((m, i) => (\n          <View key={i} style={[s.row, m.me ? s.right : s.left]}>\n            {!m.me && <View style={s.botDot}><Text style={{ fontSize: 13 }}>✨</Text></View>}\n            <View style={[s.bubble, m.me ? s.me : s.bot]}><Text style={[s.text, m.me && { color: '#fff' }]}>{m.text}</Text></View>\n          </View>\n        ))}\n      </ScrollView>\n      <View style={s.chips}>\n        {CHIPS.map((c) => (<Pressable key={c} onPress={() => ask(c)} style={s.chip}><Text style={s.chipText}>{c}</Text></Pressable>))}\n      </View>\n      <View style={s.composer}>\n        <View style={s.input}><Text style={s.placeholder}>Message Nova</Text></View>\n        <View style={s.send}><Text style={{ color: '#fff', fontWeight: '800' }}>↑</Text></View>\n      </View>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0A0F0D' },\n  head: { flexDirection: 'row', alignItems: 'center', paddingTop: 56, paddingBottom: 14, paddingHorizontal: 20, borderBottomWidth: 1, borderBottomColor: '#15201C' },\n  avatar: { width: 40, height: 40, borderRadius: 20, backgroundColor: '#10A37F22', alignItems: 'center', justifyContent: 'center', marginRight: 12 },\n  name: { color: '#fff', fontSize: 17, fontWeight: '700' },\n  status: { color: '#10A37F', fontSize: 13, marginTop: 2 },\n  scroll: { padding: 18 },\n  row: { flexDirection: 'row', alignItems: 'flex-end', marginBottom: 12 },\n  left: { justifyContent: 'flex-start' },\n  right: { justifyContent: 'flex-end' },\n  botDot: { width: 26, height: 26, borderRadius: 13, backgroundColor: '#10A37F22', alignItems: 'center', justifyContent: 'center', marginRight: 8 },\n  bubble: { maxWidth: '80%', borderRadius: 18, paddingVertical: 11, paddingHorizontal: 15 },\n  bot: { backgroundColor: '#13201B', borderBottomLeftRadius: 5 },\n  me: { backgroundColor: '#10A37F', borderBottomRightRadius: 5 },\n  text: { color: '#DCE7E3', fontSize: 15, lineHeight: 21 },\n  chips: { flexDirection: 'row', flexWrap: 'wrap', gap: 8, paddingHorizontal: 16, paddingBottom: 10 },\n  chip: { backgroundColor: '#13201B', borderRadius: 16, paddingVertical: 9, paddingHorizontal: 14, borderWidth: 1, borderColor: '#1E3A31' },\n  chipText: { color: '#7FD9C0', fontSize: 13, fontWeight: '600' },\n  composer: { flexDirection: 'row', alignItems: 'center', padding: 16, gap: 12, borderTopWidth: 1, borderTopColor: '#15201C' },\n  input: { flex: 1, height: 44, borderRadius: 22, backgroundColor: '#13201B', justifyContent: 'center', paddingHorizontal: 18 },\n  placeholder: { color: '#5A6E68', fontSize: 15 },\n  send: { width: 44, height: 44, borderRadius: 22, backgroundColor: '#10A37F', alignItems: 'center', justifyContent: 'center' },\n});\n"},{"language":"swiftui","path":"AssistantView.swift","type":"registry:page","target":"app/AssistantView.swift","rawUrl":"https://api.vp0.com/designs/nova-ai-assistant/raw?language=swiftui&path=AssistantView.swift","content":"import SwiftUI\n\nstruct Message: Identifiable { let id = UUID(); let fromMe: Bool; let text: String }\n\nstruct AssistantView: View {\n    @State private var messages: [Message] = [\n        .init(fromMe: false, text: \"Hi! I am Nova. What can I help you with today?\"),\n        .init(fromMe: true, text: \"Help me plan a focused work week.\"),\n        .init(fromMe: false, text: \"Love it. Protect your mornings for deep work, batch meetings after lunch, and keep Fridays light.\")\n    ]\n    private let chips = [\"Plan my week\", \"Summarize this\", \"Write an email\", \"Brainstorm ideas\"]\n\n    var body: some View {\n        ZStack {\n            Color(red: 0.04, green: 0.06, blue: 0.05).ignoresSafeArea()\n            VStack(spacing: 0) {\n                HStack(spacing: 12) {\n                    Image(systemName: \"sparkles\").font(.title3).frame(width: 40, height: 40)\n                        .background(Color(red: 0.06, green: 0.64, blue: 0.5).opacity(0.2)).clipShape(Circle())\n                        .foregroundColor(Color(red: 0.06, green: 0.64, blue: 0.5))\n                    VStack(alignment: .leading) {\n                        Text(\"Nova\").fontWeight(.bold).foregroundColor(.white)\n                        Text(\"● Online\").font(.footnote).foregroundColor(Color(red: 0.06, green: 0.64, blue: 0.5))\n                    }\n                    Spacer()\n                }.padding()\n\n                ScrollView {\n                    VStack(spacing: 12) {\n                        ForEach(messages) { m in\n                            HStack {\n                                if m.fromMe { Spacer() }\n                                Text(m.text)\n                                    .padding(12)\n                                    .background(m.fromMe ? Color(red: 0.06, green: 0.64, blue: 0.5) : Color.white.opacity(0.06))\n                                    .foregroundColor(m.fromMe ? .white : Color(white: 0.85))\n                                    .cornerRadius(18)\n                                if !m.fromMe { Spacer() }\n                            }\n                        }\n                    }.padding()\n                }\n\n                ScrollView(.horizontal, showsIndicators: false) {\n                    HStack {\n                        ForEach(chips, id: \\.self) { chip in\n                            Button(chip) { messages.append(.init(fromMe: true, text: chip)) }\n                                .font(.footnote).padding(.vertical, 9).padding(.horizontal, 14)\n                                .background(Color.white.opacity(0.06)).foregroundColor(Color(red: 0.5, green: 0.85, blue: 0.75))\n                                .cornerRadius(16)\n                        }\n                    }.padding(.horizontal)\n                }.padding(.bottom, 8)\n            }\n        }\n    }\n}\n\n#Preview { AssistantView() }\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/82408d14-1092-4fa3-947d-89be1ef6a758/31b8f3a6-5762-4d47-90a4-3675bcffd7a4/full.webp","width":804,"height":1748,"lqip":"x9cFAwI2ezapkHhX35LuLfk=","variants":{"avif":"https://storage.vp0.com/vp0/covers/82408d14-1092-4fa3-947d-89be1ef6a758/31b8f3a6-5762-4d47-90a4-3675bcffd7a4/avif.avif","card":"https://storage.vp0.com/vp0/covers/82408d14-1092-4fa3-947d-89be1ef6a758/31b8f3a6-5762-4d47-90a4-3675bcffd7a4/card.webp","full":"https://storage.vp0.com/vp0/covers/82408d14-1092-4fa3-947d-89be1ef6a758/31b8f3a6-5762-4d47-90a4-3675bcffd7a4/full.webp","thumb":"https://storage.vp0.com/vp0/covers/82408d14-1092-4fa3-947d-89be1ef6a758/31b8f3a6-5762-4d47-90a4-3675bcffd7a4/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/38/23d6916f-d686-4edc-b29f-a207ed31cf9c/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/38/23d6916f-d686-4edc-b29f-a207ed31cf9c/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/38/23d6916f-d686-4edc-b29f-a207ed31cf9c/clip.webm","poster":"https://storage.vp0.com/vp0/clips/38/23d6916f-d686-4edc-b29f-a207ed31cf9c/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/nova-ai-assistant","manifestUrl":"https://api.vp0.com/designs/nova-ai-assistant/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Nova — AI Assistant\").\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\n   - AssistantView.swift\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/nova-ai-assistant (machine-readable JSON manifest: https://api.vp0.com/designs/nova-ai-assistant/manifest). Design: \"Nova — AI Assistant\" — A clean AI chat assistant with suggestion chips and a typing reply.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward."}