{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.haven-real-estate","title":"Haven — Real Estate","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Real Estate"],"styleTags":["Dark","Editorial"],"category":"Real Estate","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.698Z","updatedAt":"2026-05-25T20:17:18.698Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/haven-real-estate.json","cli":"npx vp0 add haven-real-estate --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/haven-real-estate.json"},"sourceHash":"sha256:5f2ccdf667de71ca6683ca2e1b1eb91793e73087afd533db0a488b0b837dc91f","meta":{"com.vp0.contentId":"8672ad46-253c-488e-858c-00a323836e1c","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":"Real Estate","com.vp0.sourceToken":"vp0_0567bbbc2960b0b52bed9771","com.vp0.sourceHash":"sha256:5f2ccdf667de71ca6683ca2e1b1eb91793e73087afd533db0a488b0b837dc91f","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"haven-real-estate","slug":"haven-real-estate","sourceToken":"vp0_0567bbbc2960b0b52bed9771","contentType":"template","platform":"ios","description":"Browse homes with a featured listing and a clean property feed.","createdBy":"vp0","tags":["Dark","Real Estate","Editorial"],"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/haven-real-estate/raw?language=react-native&path=App.tsx","content":"import React from 'react';\nimport { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';\n\nconst LISTINGS = [\n  { title: 'Sunlit loft', price: '$2,400/mo', specs: '2 bed · 1 bath · 78 m²', emoji: '🌇', c: '#4FD1C5' },\n  { title: 'Garden cottage', price: '$1,950/mo', specs: '1 bed · 1 bath · 54 m²', emoji: '🌿', c: '#9AE6B4' },\n  { title: 'City studio', price: '$1,500/mo', specs: 'Studio · 1 bath · 38 m²', emoji: '🏙️', c: '#90CDF4' },\n];\n\nexport default function App() {\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>LISBON · FOR RENT</Text>\n        <Text style={s.h1}>Find your haven</Text>\n        <View style={s.hero}>\n          <View style={s.heroImg}><Text style={{ fontSize: 64 }}>🏡</Text></View>\n          <View style={s.heroBody}>\n            <View style={s.badge}><Text style={s.badgeText}>FEATURED</Text></View>\n            <Text style={s.heroTitle}>Hillside villa</Text>\n            <Text style={s.heroSpecs}>3 bed · 2 bath · 140 m² · ocean view</Text>\n            <Text style={s.heroPrice}>$3,800<Text style={s.mo}>/mo</Text></Text>\n          </View>\n        </View>\n        <Text style={s.section}>Nearby</Text>\n        {LISTINGS.map((l) => (\n          <View key={l.title} style={s.row}>\n            <View style={[s.thumb, { backgroundColor: l.c + '22' }]}><Text style={{ fontSize: 30 }}>{l.emoji}</Text></View>\n            <View style={{ flex: 1, marginLeft: 16 }}>\n              <Text style={s.rowTitle}>{l.title}</Text>\n              <Text style={s.rowSpecs}>{l.specs}</Text>\n            </View>\n            <Text style={[s.rowPrice, { color: l.c }]}>{l.price}</Text>\n          </View>\n        ))}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#06120F' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#4FD1C5', fontSize: 12, fontWeight: '700', letterSpacing: 2 },\n  h1: { color: '#fff', fontSize: 30, fontWeight: '800', marginTop: 4, marginBottom: 20 },\n  hero: { backgroundColor: '#0B1F1B', borderRadius: 24, overflow: 'hidden', borderWidth: 1, borderColor: '#143A33' },\n  heroImg: { height: 160, backgroundColor: '#0E2A24', alignItems: 'center', justifyContent: 'center' },\n  heroBody: { padding: 20 },\n  badge: { alignSelf: 'flex-start', backgroundColor: '#4FD1C5', borderRadius: 8, paddingVertical: 4, paddingHorizontal: 10 },\n  badgeText: { color: '#06231F', fontSize: 11, fontWeight: '800', letterSpacing: 1 },\n  heroTitle: { color: '#fff', fontSize: 24, fontWeight: '800', marginTop: 12 },\n  heroSpecs: { color: '#7FB8AE', fontSize: 14, marginTop: 6 },\n  heroPrice: { color: '#4FD1C5', fontSize: 26, fontWeight: '800', marginTop: 12 },\n  mo: { fontSize: 15, color: '#7FB8AE', fontWeight: '500' },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginTop: 28, marginBottom: 14 },\n  row: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#0A1B17', borderRadius: 18, padding: 14, marginBottom: 12 },\n  thumb: { width: 60, height: 60, borderRadius: 16, alignItems: 'center', justifyContent: 'center' },\n  rowTitle: { color: '#EAF6F3', fontSize: 16, fontWeight: '700' },\n  rowSpecs: { color: '#6FA59B', fontSize: 13, marginTop: 4 },\n  rowPrice: { fontSize: 15, fontWeight: '800' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/8672ad46-253c-488e-858c-00a323836e1c/2faef117-75b0-40e2-85a0-748224933d2c/full.webp","width":804,"height":1748,"lqip":"x9cBAwA/jER2c4BZB2pbKPY=","variants":{"avif":"https://storage.vp0.com/vp0/covers/8672ad46-253c-488e-858c-00a323836e1c/2faef117-75b0-40e2-85a0-748224933d2c/avif.avif","card":"https://storage.vp0.com/vp0/covers/8672ad46-253c-488e-858c-00a323836e1c/2faef117-75b0-40e2-85a0-748224933d2c/card.webp","full":"https://storage.vp0.com/vp0/covers/8672ad46-253c-488e-858c-00a323836e1c/2faef117-75b0-40e2-85a0-748224933d2c/full.webp","thumb":"https://storage.vp0.com/vp0/covers/8672ad46-253c-488e-858c-00a323836e1c/2faef117-75b0-40e2-85a0-748224933d2c/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/42/71cea567-03e0-461b-97b5-45b903bb7f91/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/42/71cea567-03e0-461b-97b5-45b903bb7f91/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/42/71cea567-03e0-461b-97b5-45b903bb7f91/clip.webm","poster":"https://storage.vp0.com/vp0/clips/42/71cea567-03e0-461b-97b5-45b903bb7f91/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/haven-real-estate","manifestUrl":"https://api.vp0.com/designs/haven-real-estate/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Haven — Real Estate\").\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/haven-real-estate (machine-readable JSON manifest: https://api.vp0.com/designs/haven-real-estate/manifest). Design: \"Haven — Real Estate\" — Browse homes with a featured listing and a clean property feed.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward."}