diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index b639003..d1e788a 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": "Team",
- "href": "#team"
+ "name": "Team", "href": "#team"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
},
{
- "name": "Hero",
- "href": "#hero"
+ "name": "Hero", "href": "#hero"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Testimonials",
- "href": "#testimonials"
+ "name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,46 +49,30 @@ export default function Layout() {
brand="Buono Italian"
columns={[
{
- title: "Navigation",
- items: [
+ title: "Navigation", items: [
{
- label: "About",
- href: "#about",
- },
+ label: "About", href: "#about"},
{
- label: "Menu",
- href: "#menu",
- },
+ label: "Menu", href: "#menu"},
{
- label: "Team",
- href: "#team",
- },
+ label: "Team", href: "#team"},
],
},
{
- title: "Contact",
- items: [
+ title: "Contact", items: [
{
- label: "Email",
- href: "mailto:hello@buono.it",
- },
+ label: "Email", href: "mailto:hello@buono.it"},
{
- label: "Phone",
- href: "tel:+1234567890",
- },
+ label: "Phone", href: "tel:+1234567890"},
],
},
]}
copyright="© 2024 Buono Italian. All rights reserved."
links={[
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "#"},
]}
/>