diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 47cbe92..84c83aa 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": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Products",
- "href": "#products"
+ "name": "Products", "href": "#products"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
},
{
- "name": "Testimonials",
- "href": "#testimonials"
+ "name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -58,42 +50,28 @@ export default function Layout() {
brand="USA Flower Shop"
columns={[
{
- title: "Company",
- items: [
+ title: "Company", items: [
{
- label: "About",
- href: "#about",
- },
+ label: "About", href: "#about"},
{
- label: "Press",
- href: "#",
- },
+ label: "Press", href: "#"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "Contact",
- href: "#contact",
- },
+ label: "Contact", href: "#contact"},
{
- label: "FAQ",
- href: "#faq",
- },
+ label: "FAQ", href: "#faq"},
],
},
]}
copyright="© 2024 USA Flower Shop Inc."
links={[
{
- label: "Terms",
- href: "#",
- },
+ label: "Terms", href: "#"},
{
- label: "Privacy",
- href: "#",
- },
+ label: "Privacy", href: "#"},
]}
/>