diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e96ac10..b208db1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -11,62 +11,45 @@ export default function Layout() { return ( <> + logo="Artisan Bakery" + navItems={navItems} + ctaButton={{ + text: "Order Online", href: "#products"}} + />
+ brand="Artisan Bakery" + columns={[ + { + title: "Links", items: [ + { + label: "Our Story", href: "#about"}, + { + label: "Menu", href: "#products"}, + { + label: "Contact", href: "#contact"}, + ], + }, + { + title: "Legal", items: [ + { + label: "Privacy Policy", href: "#"}, + { + label: "Terms of Service", href: "#"}, + ], + }, + ]} + copyright="© 2024 Artisan Bakery. All rights reserved." + links={[ + { + label: "Instagram", href: "#"}, + { + label: "Facebook", href: "#"}, + ]} + imageSrc="https://images.unsplash.com/photo-1645717325628-9d4d79c52f97?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHw4fHxiYWtlcnklMjBzdG9yZSUyMGF0bW9zcGhlcmUlMjB3YXJtJTIwbGlnaHRpbmd8ZW58MXwwfHx8MTc3NzAyMzU2Mnww&ixlib=rb-4.1.0&q=80&w=1080" + /> ); }