diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 719f19b..0475091 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -7,34 +7,13 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
- {
- "name": "Services",
- "href": "#services"
- },
- {
- "name": "Our Difference",
- "href": "#difference"
- },
- {
- "name": "Reviews",
- "href": "#reviews"
- },
- {
- "name": "Pricing",
- "href": "#pricing"
- },
- {
- "name": "Hero",
- "href": "#hero"
- },
- {
- "name": "Social Proof",
- "href": "#social-proof"
- },
- {
- "name": "Response",
- "href": "#response"
- }
+ { name: "Services", href: "#services" },
+ { name: "Our Difference", href: "#difference" },
+ { name: "Reviews", href: "#reviews" },
+ { name: "Pricing", href: "#pricing" },
+ { name: "Hero", href: "#hero" },
+ { name: "Social Proof", href: "#social-proof" },
+ { name: "Response", href: "#response" }
];
return (
@@ -43,11 +22,9 @@ export default function Layout() {
@@ -58,50 +35,24 @@ export default function Layout() {
brand="56 Electric & Plumbing"
columns={[
{
- title: "Services",
- items: [
- {
- label: "Plumbing",
- href: "#",
- },
- {
- label: "Electrical",
- href: "#",
- },
- {
- label: "Emergency",
- href: "#",
- },
+ title: "Services", items: [
+ { label: "Plumbing", href: "#" },
+ { label: "Electrical", href: "#" },
+ { label: "Emergency", href: "#" },
],
},
{
- title: "Support",
- items: [
- {
- label: "FAQ",
- href: "#",
- },
- {
- label: "Terms",
- href: "#",
- },
- {
- label: "Contact",
- href: "#contact",
- },
+ title: "Support", items: [
+ { label: "FAQ", href: "#" },
+ { label: "Terms", href: "#" },
+ { label: "Contact", href: "#contact" },
],
},
]}
copyright="© 2024 56 Electric & Plumbing. All rights reserved."
links={[
- {
- label: "Privacy",
- href: "#",
- },
- {
- label: "Terms",
- href: "#",
- },
+ { label: "Privacy", href: "#" },
+ { label: "Terms", href: "#" },
]}
/>