Merge version_1_1780196774687 into main

Merge version_1_1780196774687 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-05-31 03:08:12 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() { export default function Layout() {
const navItems = [ const navItems = [
{ {
"name": "Home", "name": "Home", "href": "#hero"
"href": "#hero"
}, },
{ {
"name": "Benefits", "name": "Benefits", "href": "#benefits"
"href": "#benefits"
}, },
{ {
"name": "Flavors", "name": "Flavors", "href": "#flavors"
"href": "#flavors"
}, },
{ {
"name": "About Us", "name": "About Us", "href": "#about"
"href": "#about"
}, },
{ {
"name": "FAQ", "name": "FAQ", "href": "#faq"
"href": "#faq"
}, },
{ {
"name": "Contact", "name": "Contact", "href": "#contact"
"href": "#contact"
}, },
{ {
"name": "Metrics", "name": "Metrics", "href": "#metrics"
"href": "#metrics"
} }
]; ];
@@ -44,10 +37,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar"> <SectionErrorBoundary name="navbar">
<NavbarFloatingLogo <NavbarFloatingLogo
logo="Nordic Yogurt" logo="Nordic Yogurt"
logoImageSrc="http://img.b2bpic.net/free-vector/simple-cute-logo-brand-cow-milk_80328-229.jpg"
ctaButton={{ ctaButton={{
text: "Shop Now", text: "Shop Now", href: "#flavors"}}
href: "#flavors",
}}
navItems={navItems} /> navItems={navItems} />
</SectionErrorBoundary> </SectionErrorBoundary>
<main className="flex-grow"> <main className="flex-grow">
@@ -60,16 +52,13 @@ export default function Layout() {
socialLinks={[ socialLinks={[
{ {
icon: Facebook, icon: Facebook,
href: "#", href: "#"},
},
{ {
icon: Instagram, icon: Instagram,
href: "#", href: "#"},
},
{ {
icon: Twitter, icon: Twitter,
href: "#", href: "#"},
},
]} ]}
/> />
</SectionErrorBoundary> </SectionErrorBoundary>