Merge version_1_1781856924487 into main #1

Merged
bender merged 2 commits from version_1_1781856924487 into main 2026-06-19 08:16:34 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#home"
"name": "Home", "href": "#home"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "Gallery",
"href": "#gallery"
"name": "Gallery", "href": "#gallery"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Features Media",
"href": "#features-media"
"name": "Features Media", "href": "#features-media"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Found"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-japanese-restaurant-labels-collection_23-2149431933.jpg"
ctaButton={{
text: "Reserve Now",
href: "#reservation",
}}
text: "Reserve Now", href: "#reservation"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,67 +49,42 @@ export default function Layout() {
brand="Found Restaurant - Vertemate"
columns={[
{
title: "Menu",
items: [
title: "Menu", items: [
{
label: "Sushi & Sashimi",
href: "#menu",
},
label: "Sushi & Sashimi", href: "#menu"},
{
label: "Signature Dishes",
href: "#menu",
},
label: "Signature Dishes", href: "#menu"},
{
label: "Drinks & Tea",
href: "#",
},
label: "Drinks & Tea", href: "#"},
],
},
{
title: "About",
items: [
title: "About", items: [
{
label: "Culinary Story",
href: "#about",
},
label: "Culinary Story", href: "#about"},
{
label: "Reservation Policy",
href: "#",
},
label: "Reservation Policy", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Vertemate, Como",
href: "#",
},
label: "Vertemate, Como", href: "#"},
{
label: "+39 031 000 0000",
href: "tel:+390310000000",
},
label: "+39 031 000 0000", href: "tel:+390310000000"},
{
label: "info@found-restaurant.it",
href: "mailto:info@found-restaurant.it",
},
label: "info@found-restaurant.it", href: "mailto:info@found-restaurant.it"},
],
},
]}
copyright="© 2024 Found Restaurant - Vertemate. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>