Merge version_1_1781595134636 into main #1

Merged
bender merged 2 commits from version_1_1781595134636 into main 2026-06-16 07:33:32 +00:00

View File

@@ -7,106 +7,62 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Menu",
"href": "#menu"
},
{
"name": "Reviews",
"href": "#reviews"
},
{
"name": "Location",
"href": "#location"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Gallery",
"href": "#gallery"
}
];
{ name: "About", href: "#about" },
{ name: "Menu", href: "#menu" },
{ name: "Reviews", href: "#reviews" },
{ name: "Location", href: "#location" },
{ name: "Hero", href: "#hero" },
{ name: "Features", href: "#features" },
{ name: "Gallery", href: "#gallery" }
];
return (
<StyleProvider buttonVariant="shift" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Soba Izakaya Saikai"
ctaButton={{
text: "Reserve",
href: "#reservation",
}}
navItems={navItems} />
logo="Soba Izakaya Saikai"
logoImageSrc="http://img.b2bpic.net/free-photo/woman-practicing-japanese-handwriting-indoors_23-2149124170.jpg"
ctaButton={{
text: "Reserve", href: "#reservation"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
imageSrc="http://img.b2bpic.net/free-photo/view-mountain-with-dreamy-aesthetic_23-2151700210.jpg"
brand="Soba Izakaya Saikai"
columns={[
{
title: "Visit Us",
items: [
imageSrc="http://img.b2bpic.net/free-photo/view-mountain-with-dreamy-aesthetic_23-2151700210.jpg"
brand="Soba Izakaya Saikai"
columns={[
{
label: "Miyakojima, Okinawa",
href: "#",
title: "Visit Us", items: [
{ label: "Miyakojima, Okinawa", href: "#" },
{ label: "Open Daily 5PM - 10PM", href: "#" },
],
},
{
label: "Open Daily 5PM - 10PM",
href: "#",
},
],
},
{
title: "Menu",
items: [
{
label: "Signature Soba",
href: "#menu",
title: "Menu", items: [
{ label: "Signature Soba", href: "#menu" },
{ label: "Miyako Beef", href: "#menu" },
{ label: "Local Specialties", href: "#menu" },
],
},
{
label: "Miyako Beef",
href: "#menu",
title: "Connect", items: [
{ label: "Reservations", href: "#reservation" },
{ label: "Instagram", href: "#" },
{ label: "Contact", href: "tel:0980000000" },
],
},
{
label: "Local Specialties",
href: "#menu",
},
],
},
{
title: "Connect",
items: [
{
label: "Reservations",
href: "#reservation",
},
{
label: "Instagram",
href: "#",
},
{
label: "Contact",
href: "tel:0980000000",
},
],
},
]}
copyright="© 2024 Soba Izakaya Saikai. All rights reserved."
/>
]}
copyright="© 2024 Soba Izakaya Saikai. All rights reserved."
links={[
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);