Update src/components/Layout.tsx

This commit is contained in:
2026-06-14 17:48:46 +00:00
parent d2646d5f7f
commit cb61b2bcee

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": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Flowers",
"href": "#collections"
"name": "Flowers", "href": "#collections"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,55 +35,44 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Ford Flowers"
logoImageSrc="https://images.unsplash.com/photo-1563241527-3004b7be0ffd?q=80&w=100&auto=format&fit=crop"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
logo="Ford Flowers"
logoImageSrc="http://img.b2bpic.net/free-vector/nature-foliage-wallpaper_53876-89222.jpg"
ctaButton={{
text: "Order Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Ford Flowers"
columns={[
{
title: "Visit Us",
items: [
brand="Ford Flowers"
columns={[
{
label: "123 Maple St, Zanesville, OH",
title: "Visit Us", items: [
{
label: "123 Maple St, Zanesville, OH"},
{
label: "Open Mon-Sat, 9am-6pm"},
],
},
{
label: "Open Mon-Sat, 9am-6pm",
title: "Support", items: [
{
label: "Contact", href: "#contact"},
{
label: "Privacy Policy", href: "#"},
],
},
],
},
{
title: "Support",
items: [
]}
copyright="© 2024 Ford Flowers. All rights reserved."
imageSrc="http://img.b2bpic.net/free-vector/nature-foliage-wallpaper_53876-89222.jpg"
links={[
{
label: "Contact",
href: "#contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
copyright="© 2024 Ford Flowers. All rights reserved."
imageSrc="http://img.b2bpic.net/free-vector/nature-foliage-wallpaper_53876-89222.jpg"
links={[
{
label: "Privacy Policy",
href: "#",
},
]}
/>
label: "Privacy Policy", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);