Update src/components/Layout.tsx

This commit is contained in:
2026-06-22 15:24:30 +00:00
parent 18215e937b
commit 8b8bc9f436

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Collections",
"href": "collections"
"name": "Collections", "href": "collections"
},
{
"name": "Bridal",
"href": "bridal"
"name": "Bridal", "href": "bridal"
},
{
"name": "Magazine",
"href": "magazine"
"name": "Magazine", "href": "magazine"
},
{
"name": "About",
"href": "about"
"name": "About", "href": "about"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
}
];
@@ -43,11 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Caftan Qabbaj"
logoImageSrc="https://images.unsplash.com/photo-1584308972272-9e4e7685e80f?auto=format&fit=crop&q=80&w=100&h=100"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=0csewy"
ctaButton={{
text: "Book Fitting",
href: "contact",
}}
text: "Book Fitting", href: "contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -60,45 +51,29 @@ export default function Layout() {
{
items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Press",
href: "#",
},
label: "Press", href: "#"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "TikTok",
href: "#",
},
label: "TikTok", href: "#"},
{
label: "WhatsApp",
href: "#",
},
label: "WhatsApp", href: "#"},
],
},
]}