From d94a43825cbc54c49d7f7b2d9f2baa0007074585 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:38:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd2b93c..9fcda7e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -27,12 +27,12 @@ export const metadata: Metadata = { openGraph: { title: "Seven Bass Design Italy - Pesca Sportiva a Roè Volciano", description: "Scopri il miglior negozio di articoli per la pesca nella provincia di Brescia. Servizio professionale, consulenza esperta e prodotti di qualità.", url: "https://sevenbassdesign.it", siteName: "Seven Bass Design Italy", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/bike-shop-with-shop-assistant_23-2148138657.jpg", alt: "Seven Bass Design Italy - Negozio Pesca" + url: "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1200&h=600&fit=crop", alt: "Seven Bass Design Italy - Negozio Pesca" } ] }, twitter: { - card: "summary_large_image", title: "Seven Bass Design Italy | Negozio Pesca Roè Volciano", description: "Attrezzature per la pesca, consulenza esperta, negozio locale con 5 stelle di valutazione", images: ["http://img.b2bpic.net/free-photo/bike-shop-with-shop-assistant_23-2148138657.jpg"] + card: "summary_large_image", title: "Seven Bass Design Italy | Negozio Pesca Roè Volciano", description: "Attrezzature per la pesca, consulenza esperta, negozio locale con 5 stelle di valutazione", images: ["https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1200&h=600&fit=crop"] }, robots: { index: true, -- 2.49.1 From e93a4c9f595841283a736014124467491a65afd9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:38:30 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 51 ++++++++++++++++-------------------------------- 1 file changed, 17 insertions(+), 34 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 659e0fe..c995cf0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,12 +6,19 @@ import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll" import MediaAbout from "@/components/sections/about/MediaAbout"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; -import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Star, MapPin, Zap, Phone } from "lucide-react"; export default function LandingPage() { + const [expandedCategory, setExpandedCategory] = React.useState(null); + + const handleProductClick = (productId: string) => { + if (productId === "3") { + setExpandedCategory(expandedCategory === "3" ? null : "3"); + } + }; + return ( handleProductClick("3") }, { - id: "4", name: "Accessori Tecnici", price: "Consulta", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-tackle-box-ground_53876-41725.jpg", imageAlt: "Accessori e attrezzatura" + id: "4", name: "Accessori Tecnici", price: "Consulta", imageSrc: "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=400&h=300&fit=crop", imageAlt: "Accessori e attrezzatura" } ]} gridVariant="four-items-2x2-equal-grid" @@ -131,32 +138,6 @@ export default function LandingPage() { /> -
- -
-
); } + +import React from "react"; \ No newline at end of file -- 2.49.1