Merge version_1_1781577804212 into main #1

Merged
bender merged 2 commits from version_1_1781577804212 into main 2026-06-16 02:44:36 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Shop",
"href": "#products"
"name": "Shop", "href": "#products"
},
{
"name": "Our Story",
"href": "#about"
"name": "Our Story", "href": "#about"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Lumiere Skincare"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=8p9wdy"
ctaButton={{
text: "Shop All",
href: "#products",
}}
text: "Shop All", href: "#products"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,42 +48,27 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "All Products",
href: "#products",
},
label: "All Products", href: "#products"},
{
label: "Sets & Kits",
href: "#",
},
label: "Sets & Kits", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Sustainability",
href: "#",
},
label: "Sustainability", href: "#"},
],
},
{
title: "Help",
items: [
title: "Help", items: [
{
label: "Shipping",
href: "#",
},
label: "Shipping", href: "#"},
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
],
},
]}