Update src/components/Layout.tsx

This commit is contained in:
2026-06-23 14:06:16 +00:00
parent da6199f1ef
commit ab3b8a02e7

View File

@@ -8,32 +8,16 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Collections",
"href": "products"
"name": "Collections", "href": "#products"
},
{
"name": "Our Story",
"href": "features"
"name": "Our Story", "href": "#features"
},
{
"name": "Testimonials",
"href": "testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Features",
"href": "#features"
"name": "Contact", "href": "#contact"
}
];
@@ -44,9 +28,7 @@ export default function Layout() {
<NavbarCentered
logo="LUMINA"
ctaButton={{
text: "Shop Now",
id: "products",
}}
text: "Shop Now", href: "#products"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,29 +38,19 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "About",
items: [
title: "About", items: [
{
label: "Our Story",
href: "#",
},
label: "Our Story", href: "#"},
{
label: "Process",
href: "#",
},
label: "Process", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Shipping",
href: "#",
},
label: "Shipping", href: "#"},
{
label: "FAQs",
href: "#",
},
label: "FAQs", href: "#"},
],
},
]}