Merge version_1_1782214273385 into main #1

Merged
bender merged 1 commits from version_1_1782214273385 into main 2026-06-23 11:32:11 +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": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,66 +35,48 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Toshkent"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
navItems={navItems} />
logo="Toshkent"
logoImageSrc="http://img.b2bpic.net/free-photo/colored-eggs_1156-116.jpg"
ctaButton={{
text: "Book Table", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Links",
items: [
columns={[
{
label: "Home",
href: "#hero",
title: "Links", items: [
{
label: "Home", href: "#hero"},
{
label: "Menu", href: "#products"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "Menu",
href: "#products",
title: "Social", items: [
{
label: "Facebook", href: "#"},
{
label: "Instagram", href: "#"},
],
},
{
label: "Contact",
href: "#contact",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
],
},
{
title: "Social",
items: [
{
label: "Facebook",
href: "#",
},
{
label: "Instagram",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
leftText="© 2024 Toshkent Restaurant. All rights reserved."
rightText="Sebzor ko'chasi 3, Toshkent, O'zbekiston"
/>
]}
leftText="© 2024 Toshkent Restaurant. All rights reserved."
rightText="Sebzor ko'chasi 3, Toshkent, O'zbekiston"
/>
</SectionErrorBoundary>
</StyleProvider>
);