From c3ccce70fd0d5a7c0c82daadfca987960a06d19d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 14:03:00 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 129 +++++++++++--------------------------- 1 file changed, 37 insertions(+), 92 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 00a627d..b307323 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,116 +7,61 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Experience", - "href": "#experience" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "About", "href": "#about" }, + { "name": "Experience", "href": "#experience" }, + { "name": "Services", "href": "#services" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="Portfolio" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=o6wl2q" + ctaButton={{ + text: "Hire Me", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Professional Portfolio. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + />
);