Merge version_1_1777036192065 into main #2

Merged
bender merged 1 commits from version_1_1777036192065 into main 2026-04-24 13:13:10 +00:00

View File

@@ -4,79 +4,60 @@ import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "Flowers",
"href": "#products"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Contact",
"href": "#contact"
}
];
{
"name": "Home", "href": "#hero"
},
{
"name": "Flowers", "href": "#products"
},
{
"name": "About", "href": "#about"
},
{
"name": "Contact", "href": "#contact"
}
];
return (
<>
<NavbarCentered
logo="Bloom & Petal"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
/ navItems={navItems} />
logo="Bloom & Petal"
ctaButton={{
text: "Shop Now", href: "#products"}}
navItems={navItems}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterSimpleMedia
brand="Bloom & Petal"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "#about",
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Services",
items: [
{
label: "Delivery",
href: "#",
},
{
label: "Subscriptions",
href: "#",
},
],
},
]}
copyright="© 2024 Bloom & Petal."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5mxkxc&_wi=2"
/>
brand="Bloom & Petal"
columns={[
{
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Careers", href: "#"},
],
},
{
title: "Services", items: [
{
label: "Delivery", href: "#"},
{
label: "Subscriptions", href: "#"},
],
},
]}
copyright="© 2024 Bloom & Petal."
links={[
{
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5mxkxc"
/>
</>
);
}