Merge version_1_1782061045265 into main #1

Merged
bender merged 2 commits from version_1_1782061045265 into main 2026-06-21 16:58:32 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Collections",
"href": "#products"
"name": "Collections", "href": "#products"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="LuxeMakeup"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=cjdbew"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
text: "Shop Now", href: "#products"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +49,32 @@ export default function Layout() {
brand="LuxeMakeup"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Lipstick",
href: "#products",
},
label: "Lipstick", href: "#products"},
{
label: "Eyeshadow",
href: "#products",
},
label: "Eyeshadow", href: "#products"},
{
label: "Foundation",
href: "#products",
},
label: "Foundation", href: "#products"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "Our Story",
href: "#about",
},
label: "Our Story", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Sustainability",
href: "#",
},
label: "Sustainability", href: "#"},
],
},
]}
copyright="© 2024 LuxeMakeup. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>