diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 5c4dfff..77409e8 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": "Home",
- "href": "#home"
+ "name": "Home", "href": "#home"
},
{
- "name": "About Us",
- "href": "#about"
+ "name": "About Us", "href": "#about"
},
{
- "name": "Services",
- "href": "#services"
+ "name": "Services", "href": "#services"
},
{
- "name": "Projects",
- "href": "#projects"
+ "name": "Projects", "href": "#projects"
},
{
- "name": "Team",
- "href": "#team"
+ "name": "Team", "href": "#team"
},
{
- "name": "Reviews",
- "href": "#testimonials"
+ "name": "Reviews", "href": "#testimonials"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
}
];
@@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,49 +51,31 @@ export default function Layout() {
{
items: [
{
- label: "Home",
- href: "#home",
- },
+ label: "Home", href: "#home"},
{
- label: "About Us",
- href: "#about",
- },
+ label: "About Us", href: "#about"},
{
- label: "Services",
- href: "#services",
- },
+ label: "Services", href: "#services"},
],
},
{
items: [
{
- label: "Projects",
- href: "#projects",
- },
+ label: "Projects", href: "#projects"},
{
- label: "Our Team",
- href: "#team",
- },
+ label: "Our Team", href: "#team"},
{
- label: "Client Reviews",
- href: "#testimonials",
- },
+ label: "Client Reviews", href: "#testimonials"},
],
},
{
items: [
{
- label: "Contact Us",
- href: "#contact",
- },
+ label: "Contact Us", href: "#contact"},
{
- label: "Get a Quote",
- href: "#contact",
- },
+ label: "Get a Quote", href: "#contact"},
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
],
},
]}