diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index bd4ea87..14313cb 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": "Home",
- "href": "#home"
- },
- {
- "name": "Services",
- "href": "#services"
- },
- {
- "name": "About",
- "href": "#about"
- },
- {
- "name": "Contact",
- "href": "#contact"
- },
- {
- "name": "Features",
- "href": "#features"
- },
- {
- "name": "Team",
- "href": "#team"
- },
- {
- "name": "Testimonials",
- "href": "#testimonials"
- }
+ { name: "Home", href: "#home" },
+ { name: "Services", href: "#services" },
+ { name: "About", href: "#about" },
+ { name: "Contact", href: "#contact" },
+ { name: "Features", href: "#features" },
+ { name: "Team", href: "#team" },
+ { name: "Testimonials", href: "#testimonials" }
];
return (
@@ -43,11 +22,9 @@ export default function Layout() {
@@ -57,29 +34,19 @@ export default function Layout() {
);
-}
+}
\ No newline at end of file