Merge version_1_1782224945307 into main #1

Merged
bender merged 1 commits from version_1_1782224945307 into main 2026-06-23 14:30:08 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Economia",
"href": "#economia-invisivel"
"name": "Economia", "href": "#economia-invisivel"
},
{
"name": "Mesa VG",
"href": "#mesa-vg"
"name": "Mesa VG", "href": "#mesa-vg"
},
{
"name": "Elegibilidade",
"href": "#elegibilidade"
"name": "Elegibilidade", "href": "#elegibilidade"
},
{
"name": "Admissão",
"href": "#admissao"
"name": "Admissão", "href": "#admissao"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
}
];
@@ -42,59 +35,44 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="VGOV"
ctaButton={{
text: "Descobrir Elegibilidade",
href: "#elegibilidade",
}}
navItems={navItems} />
logo="VGOV"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=yfjedm"
ctaButton={{
text: "Descobrir Elegibilidade", href: "#elegibilidade"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="VGOV™"
columns={[
{
title: "Institucional",
items: [
brand="VGOV™"
columns={[
{
label: "Sobre",
href: "#mesa-vg",
title: "Institucional", items: [
{
label: "Sobre", href: "#mesa-vg"},
{
label: "Compliance", href: "#"},
],
},
{
label: "Compliance",
href: "#",
title: "Legal", items: [
{
label: "Privacidade", href: "#"},
{
label: "Termos", href: "#"},
],
},
],
},
{
title: "Legal",
items: [
]}
copyright="© 2026 VGOV INOVA SIMPLES LTDA. Todos os direitos reservados."
links={[
{
label: "Privacidade",
href: "#",
},
label: "LinkedIn", href: "#"},
{
label: "Termos",
href: "#",
},
],
},
]}
copyright="© 2026 VGOV INOVA SIMPLES LTDA. Todos os direitos reservados."
links={[
{
label: "LinkedIn",
href: "#",
},
{
label: "WhatsApp",
href: "https://wa.me/5561982412637",
},
]}
/>
label: "WhatsApp", href: "https://wa.me/5561982412637"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);