diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 1a643a4..5938eb7 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": "#hero"
+ "name": "Home", "href": "#hero"
},
{
- "name": "Laptops",
- "href": "#products"
+ "name": "Laptops", "href": "#products"
},
{
- "name": "Pricing",
- "href": "#pricing"
+ "name": "Pricing", "href": "#pricing"
},
{
- "name": "Testimonials",
- "href": "#testimonials"
+ "name": "Testimonials", "href": "#testimonials"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
},
{
- "name": "Faq",
- "href": "#faq"
+ "name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -58,67 +50,42 @@ export default function Layout() {
brand="Apex Laptops"
columns={[
{
- title: "Company",
- items: [
+ title: "Company", items: [
{
- label: "About Us",
- href: "#",
- },
+ label: "About Us", href: "#"},
{
- label: "Careers",
- href: "#",
- },
+ label: "Careers", href: "#"},
{
- label: "Legal",
- href: "#",
- },
+ label: "Legal", href: "#"},
],
},
{
- title: "Products",
- items: [
+ title: "Products", items: [
{
- label: "Laptops",
- href: "#",
- },
+ label: "Laptops", href: "#"},
{
- label: "Workstations",
- href: "#",
- },
+ label: "Workstations", href: "#"},
{
- label: "Accessories",
- href: "#",
- },
+ label: "Accessories", href: "#"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "FAQ",
- href: "#",
- },
+ label: "FAQ", href: "#"},
{
- label: "Warranty",
- href: "#",
- },
+ label: "Warranty", href: "#"},
{
- label: "Help Desk",
- href: "#",
- },
+ label: "Help Desk", href: "#"},
],
},
]}
copyright="© 2024 Apex Technologies Inc. All rights reserved."
links={[
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "#"},
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
]}
/>