Merge version_1_1777037380482 into main

Merge version_1_1777037380482 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-04-24 13:33:31 +00:00

View File

@@ -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 (
<>
<NavbarCentered
logo="Drakon"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
/ navItems={navItems} />
logo="Drakon"
navItems={navItems}
ctaButton={{
text: "Order Now", href: "#contact"
}}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterMinimal
brand="Drakon"
copyright="© 2024 Drakon Coffeeshop. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Twitter,
href: "#",
},
{
icon: Facebook,
href: "#",
},
]}
/>
brand="Drakon"
copyright="© 2024 Drakon Coffeeshop. All rights reserved."
socialLinks={[
{ icon: "Instagram", href: "#" },
{ icon: "Twitter", href: "#" },
{ icon: "Facebook", href: "#" }
]}
/>
</>
);
}
}