diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 16521b4..083056f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,94 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "Chi Sono", - "href": "#about" - }, - { - "name": "Servizi", - "href": "#features" - }, - { - "name": "Contatti", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Social Proof", - "href": "#social-proof" - } -]; + { name: "Home", href: "#hero" }, + { name: "Chi Sono", href: "#about" }, + { name: "Servizi", href: "#features" }, + { name: "Contatti", href: "#contact" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Social Proof", href: "#social-proof" } + ]; return ( + logo="Leonardo Valori" + logoImageSrc="http://img.b2bpic.net/free-vector/flat-business-card-template_23-2148121233.jpg" + ctaButton={{ + text: "Contattami", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Leonardo Valori. Tutti i diritti riservati." + links={[ + { label: "LinkedIn", href: "#" }, + { label: "Instagram", href: "#" }, + ]} + />
);