Merge version_1_1781435109602 into main #1

Merged
bender merged 2 commits from version_1_1781435109602 into main 2026-06-14 11:06:18 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Products",
"href": "#products"
"name": "Products", "href": "#products"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
}
];
@@ -43,35 +36,28 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="One Fish, Two Fish"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
navItems={navItems} />
logo="One Fish, Two Fish"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=qancqh"
ctaButton={{
text: "Book Table", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="One Fish, Two Fish"
copyright="© 2024 One Fish, Two Fish. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Facebook,
href: "#",
},
{
icon: Twitter,
href: "#",
},
]}
/>
brand="One Fish, Two Fish"
copyright="© 2024 One Fish, Two Fish. All rights reserved."
socialLinks={[
{
icon: "Instagram", href: "#"},
{
icon: "Facebook", href: "#"},
{
icon: "Twitter", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);