diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index fa6280a..8743aab 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": "Courses",
- "href": "#courses"
+ "name": "Courses", "href": "#courses"
},
{
- "name": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Hero",
- "href": "#hero"
+ "name": "Hero", "href": "#hero"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
},
{
- "name": "Faq",
- "href": "#faq"
+ "name": "Faq", "href": "#faq"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
@@ -58,41 +49,27 @@ export default function Layout() {
copyright="© 2026 Brand. All rights reserved."
columns={[
{
- heading: "Product",
- links: [
+ title: "Product", links: [
{
- text: "Features",
- href: "#features",
- },
+ label: "Features", href: "#features"},
{
- text: "Pricing",
- href: "#pricing",
- },
+ label: "Pricing", href: "#pricing"},
],
},
{
- heading: "Company",
- links: [
+ title: "Company", links: [
{
- text: "About",
- href: "#about",
- },
+ label: "About", href: "#about"},
{
- text: "Contact",
- href: "#contact",
- },
+ label: "Contact", href: "#contact"},
],
},
]}
links={[
{
- text: "Privacy",
- href: "#",
- },
+ label: "Privacy", href: "#"},
{
- text: "Terms",
- href: "#",
- },
+ label: "Terms", href: "#"},
]}
/>