Merge version_1_1781533306585 into main #1

Merged
bender merged 2 commits from version_1_1781533306585 into main 2026-06-15 14:22:57 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Menu",
"href": "#products"
"name": "Menu", "href": "#products"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,70 +35,51 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="It's Boba Time"
ctaButton={{
text: "Order Online",
href: "#",
}}
navItems={navItems} />
logo="It's Boba Time"
logoImageSrc="http://img.b2bpic.net/free-vector/boba-ice-illustration-mascot-logo-design_779267-934.jpg"
ctaButton={{
text: "Order Online", href: "#"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="It's Boba Time - Vermont"
columns={[
{
items: [
brand="It's Boba Time - Vermont"
columns={[
{
label: "Order Pickup",
href: "#",
items: [
{
label: "Order Pickup", href: "#"},
{
label: "Order Delivery", href: "#"},
{
label: "Directions", href: "#"},
],
},
{
label: "Order Delivery",
href: "#",
items: [
{
label: "Menu", href: "#products"},
{
label: "Rewards", href: "#"},
{
label: "Franchise", href: "#"},
],
},
{
label: "Directions",
href: "#",
items: [
{
label: "Instagram", href: "https://instagram.com"},
{
label: "Facebook", href: "https://facebook.com"},
{
label: "Twitter", href: "https://twitter.com"},
],
},
],
},
{
items: [
{
label: "Menu",
href: "#products",
},
{
label: "Rewards",
href: "#",
},
{
label: "Franchise",
href: "#",
},
],
},
{
items: [
{
label: "Instagram",
href: "https://instagram.com",
},
{
label: "Facebook",
href: "https://facebook.com",
},
{
label: "Twitter",
href: "https://twitter.com",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);