Merge version_1_1782258520288 into main #1

Merged
bender merged 1 commits from version_1_1782258520288 into main 2026-06-23 23:49:34 +00:00

View File

@@ -8,32 +8,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": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarDropdown
logo="Princess Pancakes"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
text: "Book Table", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,37 +48,23 @@ export default function Layout() {
brand="Princess Pancakes Reno"
columns={[
{
title: "Explore",
items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Menu",
href: "#menu",
},
label: "Menu", href: "#menu"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Support",
items: [
{
label: "Reservations",
href: "#",
},
label: "Reservations", href: "#"},
{
label: "Contact",
href: "mailto:hello@princesspancakes.com",
},
label: "Contact", href: "mailto:hello@princesspancakes.com"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}