diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index c665e7a..22908e8 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": "Collection",
- "href": "#products"
+ "name": "Collection", "href": "#products"
},
{
- "name": "Testimonials",
- "href": "#testimonials"
+ "name": "Testimonials", "href": "#testimonials"
},
{
- "name": "FAQ",
- "href": "#faq"
+ "name": "FAQ", "href": "#faq"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Social Proof",
- "href": "#social-proof"
+ "name": "Social Proof", "href": "#social-proof"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,42 +49,28 @@ export default function Layout() {
brand="EliteStore"
columns={[
{
- title: "Company",
- items: [
+ title: "Company", items: [
{
- label: "About Us",
- href: "#",
- },
+ label: "About Us", href: "#"},
{
- label: "Careers",
- href: "#",
- },
+ label: "Careers", href: "#"},
],
},
{
- title: "Help",
- items: [
+ title: "Help", items: [
{
- label: "Returns",
- href: "#",
- },
+ label: "Returns", href: "#"},
{
- label: "FAQ",
- href: "#",
- },
+ label: "FAQ", href: "#"},
],
},
]}
copyright="© 2024 EliteStore Inc. All rights reserved."
links={[
{
- label: "Privacy",
- href: "#",
- },
+ label: "Privacy", href: "#"},
{
- label: "Terms",
- href: "#",
- },
+ label: "Terms", href: "#"},
]}
/>