diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 11a7a7d..23fdef3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,80 +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={[]} + />
);