// PhoneMockupHero — light-mode, travel-photo-rich, matches user's reference // Shows: header, Patrimônio (blurred), Próximas Viagens with photographic cards, AI callout, bottom nav const Ico = ({ name, size = 16, color, strokeWidth = 1.75, style = {} }) => ( ); // SVG city scenes (CSS-art photography substitute) function NovaYorkScene() { return ( {/* sky */} {/* sun */} {/* far skyline */} {/* near skyline */} {/* statue of liberty silhouette */} {/* pedestal */} {/* body */} {/* head */} {/* crown */} {/* torch arm */} {/* water */} {/* water shimmer */} ); } function SantiagoScene() { return ( {/* Andes mountains */} {/* foreground city lights hint */} ); } function LisboaScene() { return ( {/* hill silhouette */} {/* yellow buildings */} {/* orange roofs */} {/* windows */} ); } function PhoneMockupHero() { React.useEffect(() => { if (window.lucide) window.lucide.createIcons(); }, []); return (
{/* status bar */}
13:08
{/* app header */}
N
Olá, Fernando
Sábado, 16 De Maio
9+
{/* Patrimônio card */}
Patrimônio
4 contas conectadas
A receber
A pagar
{/* Próximas Viagens */}
Próximas Viagens Ver todos
Em 25 dias
Nova York
10–14 Jun · 4 dias
Santiago
22–26 Jul
Em 67 dias
{/* AI callout */}
SUAS PRÓXIMAS VIAGENS
Prepare-se para Nova York
FALTAM 25 DIAS
Nova York
Tours Atrações Food
Descobrir experiências
{/* bottom nav */}
{[ { i: 'home', l: 'Início', a: true }, { i: 'calendar-days', l: 'Agenda' }, { i: 'plane', l: 'Viagens' }, { i: 'wallet', l: 'Finanças' }, { i: 'settings', l: 'Ajustes' }, ].map((nav, idx) => (
{nav.l}
))}
{/* home indicator */}
); } window.PhoneMockupHero = PhoneMockupHero; window.NovaYorkScene = NovaYorkScene; window.SantiagoScene = SantiagoScene; window.LisboaScene = LisboaScene;