Merge version_2_1780443913014 into main

Merge version_2_1780443913014 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-02 23:47:12 +00:00

View File

@@ -8,24 +8,19 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() { export default function Layout() {
const navItems = [ const navItems = [
{ {
"name": "Hero", "name": "Hero", "href": "#hero"
"href": "#hero"
}, },
{ {
"name": "Social Proof", "name": "Social Proof", "href": "#social-proof"
"href": "#social-proof"
}, },
{ {
"name": "Product", "name": "Product", "href": "#product"
"href": "#product"
}, },
{ {
"name": "Metrics", "name": "Metrics", "href": "#metrics"
"href": "#metrics"
}, },
{ {
"name": "Contact", "name": "Contact", "href": "#contact"
"href": "#contact"
} }
]; ];
@@ -36,9 +31,7 @@ export default function Layout() {
<NavbarCentered <NavbarCentered
logo="Brand" logo="Brand"
ctaButton={{ ctaButton={{
text: "Get Started", text: "Get Started", href: "/"}}
href: "/",
}}
navItems={navItems} /> navItems={navItems} />
</SectionErrorBoundary> </SectionErrorBoundary>
<main className="flex-grow"> <main className="flex-grow">
@@ -50,41 +43,27 @@ export default function Layout() {
copyright="© 2026 Brand. All rights reserved." copyright="© 2026 Brand. All rights reserved."
columns={[ columns={[
{ {
heading: "Product", title: "Product", links: [
links: [
{ {
text: "Features", label: "Features", href: "#features"},
href: "#features",
},
{ {
text: "Pricing", label: "Pricing", href: "#pricing"},
href: "#pricing",
},
], ],
}, },
{ {
heading: "Company", title: "Company", links: [
links: [
{ {
text: "About", label: "About", href: "#about"},
href: "#about",
},
{ {
text: "Contact", label: "Contact", href: "#contact"},
href: "#contact",
},
], ],
}, },
]} ]}
links={[ links={[
{ {
text: "Privacy", label: "Privacy", href: "#"},
href: "#",
},
{ {
text: "Terms", label: "Terms", href: "#"},
href: "#",
},
]} ]}
/> />
</SectionErrorBoundary> </SectionErrorBoundary>