diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 359cec2..d764c2d 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": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Services",
- "href": "#services"
+ "name": "Services", "href": "#services"
},
{
- "name": "FAQ",
- "href": "#faq"
+ "name": "FAQ", "href": "#faq"
},
{
- "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="Dr. Smith Clinic"
columns={[
{
- title: "Explore",
- items: [
+ title: "Explore", items: [
{
- label: "About Us",
- href: "#about",
- },
+ label: "About Us", href: "#about"},
{
- label: "Services",
- href: "#services",
- },
+ label: "Services", href: "#services"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "FAQ",
- href: "#faq",
- },
+ label: "FAQ", href: "#faq"},
{
- label: "Contact",
- href: "#contact",
- },
+ label: "Contact", href: "#contact"},
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 Dr. Smith Clinic. All rights reserved."
links={[
{
- label: "Twitter",
- href: "#",
- },
+ label: "Twitter", href: "#"},
{
- label: "LinkedIn",
- href: "#",
- },
+ label: "LinkedIn", href: "#"},
]}
/>