Merge version_1_1781597992119 into main

Merge version_1_1781597992119 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-16 08:21:07 +00:00

View File

@@ -7,89 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Menu",
"href": "#menu"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
{ name: "Home", href: "#" },
{ name: "Features", href: "#features" },
{ name: "Menu", href: "#menu" },
{ name: "Contact", href: "#contact" },
{ name: "Hero", href: "#hero" },
{ name: "About", href: "#about" },
{ name: "Testimonials", href: "#testimonials" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarCentered
logo="SAIKAI"
ctaButton={{
text: "Reserve",
href: "#reserve",
}}
navItems={navItems} />
logo="SAIKAI"
ctaButton={{
text: "Reserve", href: "#reserve"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
imageSrc="http://img.b2bpic.net/free-photo/low-angle-shot-axis-towers-tbilisi-georgia-blue-sky_181624-61144.jpg"
brand="Soba Izakaya Saikai"
columns={[
{
title: "Location",
items: [
imageSrc="http://img.b2bpic.net/free-photo/low-angle-shot-axis-towers-tbilisi-georgia-blue-sky_181624-61144.jpg"
brand="Soba Izakaya Saikai"
columns={[
{
label: "1405-225 Ueno Arazato, Miyakojima",
href: "#",
title: "Location", items: [
{
label: "1405-225 Ueno Arazato, Miyakojima", href: "#"},
{
label: "Phone: +81 980-74-7177", href: "tel:+81980747177"},
],
},
{
label: "Phone: +81 980-74-7177",
href: "tel:+81980747177",
title: "Info", items: [
{
label: "Free Parking Available", href: "#"},
{
label: "Private Rooms Available", href: "#"},
{
label: "Reservation Recommended", href: "#"},
],
},
],
},
{
title: "Info",
items: [
{
label: "Free Parking Available",
href: "#",
},
{
label: "Private Rooms Available",
href: "#",
},
{
label: "Reservation Recommended",
href: "#",
},
],
},
]}
copyright="© 2024 Soba Izakaya Saikai. All rights reserved."
/>
]
}
copyright="© 2024 Soba Izakaya Saikai. All rights reserved."
links={[]}
/>
</SectionErrorBoundary>
</StyleProvider>
);