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