diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d51fc7f..7076cda 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,67 +8,41 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "About", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Products", href: "#products" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="Societe Erriadh" + logoImageSrc="http://img.b2bpic.net/free-vector/modern-geometric-monogram-logo-branding_125964-4542.jpg" + ctaButton={{ + text: "Get in touch", href: "#contact"}} + navItems={navItems} + />
+ brand="Societe Erriadh" + copyright="© 2024 Societe Erriadh. All rights reserved." + socialLinks={[ + { + icon: "Linkedin", href: "#"}, + { + icon: "Twitter", href: "#"}, + ]} + />
);