diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 7acf1fb..67a67a6 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": "Collections",
- "href": "#products"
+ "name": "Collections", "href": "#products"
},
{
- "name": "Reviews",
- "href": "#testimonials"
+ "name": "Reviews", "href": "#testimonials"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Social Proof",
- "href": "#social-proof"
+ "name": "Social Proof", "href": "#social-proof"
},
{
- "name": "Faq",
- "href": "#faq"
+ "name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,42 +49,28 @@ export default function Layout() {
brand="HAYAH"
columns={[
{
- title: "Company",
- items: [
+ title: "Company", items: [
{
- label: "About Us",
- href: "#",
- },
+ label: "About Us", href: "#"},
{
- label: "Collections",
- href: "#products",
- },
+ label: "Collections", href: "#products"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "Shipping Policy",
- href: "#",
- },
+ label: "Shipping Policy", href: "#"},
{
- label: "Contact",
- href: "#contact",
- },
+ label: "Contact", href: "#contact"},
],
},
]}
copyright="© 2024 HAYAH. All rights reserved."
links={[
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "#"},
]}
/>