From 4a7bfb75d835457a121a2c9899bc061bc0b1acda Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 10:20:54 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 85 ++++++++++++--------------------------- 1 file changed, 26 insertions(+), 59 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a392674..23fdef3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,81 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Works", - "href": "#works" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Works", href: "#works" }, + { name: "About", href: "#about" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="ISLAM TIRICHINE" + ctaButton={{ + text: "Get in touch", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Islam Tirichine. All rights reserved." + links={[]} + />
);