diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index a9fd115..9d71172 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -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() {
@@ -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: "#"},
],
},
]}