Merge version_1_1777029471388 into main #1

Merged
bender merged 1 commits from version_1_1777029471388 into main 2026-04-24 11:20:45 +00:00

View File

@@ -4,78 +4,58 @@ import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Coffee",
"href": "#products"
},
{
"name": "Contact",
"href": "#contact"
}
];
{
"name": "About", "href": "#about"
},
{
"name": "Coffee", "href": "#products"
},
{
"name": "Contact", "href": "#contact"
}
];
return (
<>
<NavbarCentered
logo="Tetra"
ctaButton={{
text: "Visit Us",
href: "#contact",
}}
/ navItems={navItems} />
logo="Tetra"
ctaButton={{
text: "Visit Us", href: "#contact"}}
navItems={navItems}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterSimpleReveal
brand="Tetra"
columns={[
{
title: "Navigation",
items: [
{
label: "About",
href: "#about",
},
{
label: "Products",
href: "#products",
},
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2024 Tetra Coffee. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "Instagram",
href: "#",
},
]}
/>
brand="Tetra"
columns={[
{
title: "Navigation", items: [
{
label: "About", href: "#about"},
{
label: "Products", href: "#products"},
{
label: "Contact", href: "#contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
],
},
]}
copyright="© 2024 Tetra Coffee. All rights reserved."
links={[
{
label: "Twitter", href: "#"},
{
label: "Instagram", href: "#"},
]}
/>
</>
);
}