diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 314c703..febdb60 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,57 +1,36 @@ import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarCentered from '@/components/ui/NavbarCentered'; import { Outlet } from 'react-router-dom'; +import { Instagram, Facebook, Twitter } from 'lucide-react'; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Contact", - "href": "#contact" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Products", href: "#products" }, + { name: "Contact", href: "#contact" } + ]; return ( <> + logo="Artisan Bakery" + navItems={navItems} + ctaButton={{ + text: "Order Online", href: "#contact"}} + />
+ brand="Artisan Bakery" + copyright="© 2024 Artisan Bakery. All rights reserved." + socialLinks={[ + { icon: "Instagram", href: "#" }, + { icon: "Facebook", href: "#" }, + { icon: "Twitter", href: "#" }, + ]} + /> ); -} +} \ No newline at end of file