From 05b1c5279846a89b67dce3f0a6e052fce7845ef3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:21:22 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 16521b4..761efaf 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 12:21:25 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 104 ++++++++++++-------------------------- 1 file changed, 31 insertions(+), 73 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 761efaf..083056f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,95 +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: "#" }, + ]} + />
); -- 2.49.1