Merge version_2_1778483445367 into main

Merge version_2_1778483445367 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-05-11 07:12:26 +00:00

View File

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