Merge version_1_1780523597164 into main #1

Merged
bender merged 2 commits from version_1_1780523597164 into main 2026-06-03 21:54:54 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#home"
"name": "Home", "href": "#home"
},
{
"name": "Our Wines",
"href": "#our-wines"
"name": "Our Wines", "href": "#our-wines"
},
{
"name": "Our Story",
"href": "#our-story"
"name": "Our Story", "href": "#our-story"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Château Vigneron"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=usxnca"
ctaButton={{
text: "Visit Us",
href: "#contact",
}}
text: "Visit Us", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -59,45 +51,29 @@ export default function Layout() {
{
items: [
{
label: "Our Story",
href: "#our-story",
},
label: "Our Story", href: "#our-story"},
{
label: "Our Wines",
href: "#our-wines",
},
label: "Our Wines", href: "#our-wines"},
{
label: "The Team",
href: "#team",
},
label: "The Team", href: "#team"},
],
},
{
items: [
{
label: "Contact Us",
href: "#contact",
},
label: "Contact Us", href: "#contact"},
{
label: "Visit Us",
href: "#contact",
},
label: "Visit Us", href: "#contact"},
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}