diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 8d215f2..8d2cbe4 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": "Products",
- "href": "#products"
+ "name": "Products", "href": "#products"
},
{
- "name": "About",
- "href": "#features"
+ "name": "About", "href": "#features"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
},
{
- "name": "Social Proof",
- "href": "#social-proof"
+ "name": "Social Proof", "href": "#social-proof"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
},
{
- "name": "Faq",
- "href": "#faq"
+ "name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,63 +49,40 @@ export default function Layout() {
brand="Alpha Textiles"
columns={[
{
- title: "Company",
- items: [
+ title: "Company", items: [
{
- label: "About Us",
- href: "#features",
- },
+ label: "About Us", href: "#features"},
{
- label: "Career",
- href: "#",
- },
+ label: "Career", href: "#"},
{
- label: "Location",
- href: "#",
- },
+ label: "Location", href: "#"},
],
},
{
- title: "Products",
- items: [
+ title: "Products", items: [
{
- label: "Cotton",
- href: "#products",
- },
+ label: "Cotton", href: "#products"},
{
- label: "Polyester",
- href: "#products",
- },
+ label: "Polyester", href: "#products"},
{
- label: "Denim",
- href: "#products",
- },
+ label: "Denim", href: "#products"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "FAQs",
- href: "#faq",
- },
+ label: "FAQs", href: "#faq"},
{
- label: "Contact",
- href: "#contact",
- },
+ label: "Contact", href: "#contact"},
],
},
]}
copyright="© 2024 Alpha Textiles. All Rights Reserved."
links={[
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "#"},
]}
/>