diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index dd59cb5..d4d61d3 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": "Portfolio",
- "href": "#portfolio"
+ "name": "Portfolio", "href": "#portfolio"
},
{
- "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": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
},
{
- "name": "Social",
- "href": "#social"
+ "name": "Social", "href": "#social"
},
{
- "name": "Testimonial",
- "href": "#testimonial"
+ "name": "Testimonial", "href": "#testimonial"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,38 +49,26 @@ export default function Layout() {
brand="Studio Name"
columns={[
{
- title: "Navigation",
- items: [
+ title: "Navigation", items: [
{
- label: "Portfolio",
- href: "#portfolio",
- },
+ label: "Portfolio", href: "#portfolio"},
{
- label: "About",
- href: "#about",
- },
+ label: "About", href: "#about"},
],
},
{
- title: "Social",
- items: [
+ title: "Social", items: [
{
- label: "Instagram",
- href: "#",
- },
+ label: "Instagram", href: "#"},
{
- label: "Twitter",
- href: "#",
- },
+ label: "Twitter", href: "#"},
],
},
]}
copyright="© 2024 Studio Name. All rights reserved."
links={[
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
]}
/>