Merge version_1_1777040466368 into main #1

Merged
bender merged 1 commits from version_1_1777040466368 into main 2026-04-24 14:24:38 +00:00

View File

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