diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 41878a5..0bf83c2 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": "#"
+ "name": "Home", "href": "#"
},
{
- "name": "Products",
- "href": "#products"
+ "name": "Products", "href": "#products"
},
{
- "name": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
},
{
- "name": "Hero",
- "href": "#hero"
+ "name": "Hero", "href": "#hero"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
}
];
@@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,55 +49,36 @@ export default function Layout() {
brand="ShopStore"
columns={[
{
- title: "Products",
- items: [
+ title: "Products", items: [
{
- label: "All",
- href: "#",
- },
+ label: "All", href: "#"},
{
- label: "New",
- href: "#",
- },
+ label: "New", href: "#"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "Help Center",
- href: "#",
- },
+ label: "Help Center", href: "#"},
{
- label: "Returns",
- href: "#",
- },
+ label: "Returns", href: "#"},
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{
- label: "Privacy",
- href: "#",
- },
+ label: "Privacy", href: "#"},
{
- label: "Terms",
- href: "#",
- },
+ label: "Terms", href: "#"},
],
},
]}
copyright="© 2024 ShopStore Inc."
links={[
{
- label: "Twitter",
- href: "#",
- },
+ label: "Twitter", href: "#"},
{
- label: "Instagram",
- href: "#",
- },
+ label: "Instagram", href: "#"},
]}
/>