diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8c88cc5..9343604 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,92 +1,89 @@ -import { Outlet } from "react-router-dom"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import { Outlet } from 'react-router-dom'; export default function Layout() { const navItems = [ - { - name: "About", - href: "#about", - }, - { - name: "Features", - href: "#features", - }, - { - name: "Products", - href: "#products", - }, - { - name: "Pricing", - href: "#pricing", - }, - ]; + { + "name": "About", + "href": "#about" + }, + { + "name": "Features", + "href": "#features" + }, + { + "name": "Products", + "href": "#products" + }, + { + "name": "Pricing", + "href": "#pricing" + } +]; return ( -