Merge version_3 into main #5
@@ -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,
|
||||
|
||||
@@ -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<string | null>(null);
|
||||
|
||||
const handleProductClick = (productId: string) => {
|
||||
if (productId === "3") {
|
||||
setExpandedCategory(expandedCategory === "3" ? null : "3");
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -49,7 +56,7 @@ export default function LandingPage() {
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bike-shop-with-shop-assistant_23-2148138657.jpg?_wi=1"
|
||||
imageSrc="https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1200&h=600&fit=crop"
|
||||
imageAlt="Interno del negozio Seven Bass Design"
|
||||
buttons={[
|
||||
{ text: "📞 Chiama Ora", href: "tel:0365598401" },
|
||||
@@ -68,7 +75,7 @@ export default function LandingPage() {
|
||||
description="Seven Bass Design Italy è il punto di riferimento per gli appassionati di pesca sportiva nella provincia di Brescia. Nata dalla passione per la pesca e dalla volontà di offrire prodotti di qualità con consulenza esperta, la nostra attività è gestita con dedizione e competenza. Ogni cliente riceve attenzione personalizzata e consigli professionali per scegliere l'attrezzatura più adatta alle proprie esigenze."
|
||||
tag="Negozio Locale"
|
||||
tagIcon={MapPin}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bike-shop-with-shop-assistant_23-2148138657.jpg?_wi=2"
|
||||
imageSrc="https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=600&h=400&fit=crop"
|
||||
imageAlt="Interno del negozio Seven Bass Design Italy"
|
||||
buttons={[
|
||||
{ text: "Vieni a Trovarci", href: "#contact" }
|
||||
@@ -85,16 +92,16 @@ export default function LandingPage() {
|
||||
tagIcon={Zap}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Canne da Pesca", price: "Consulta", imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-fishing-rod-with-hook-fish-green-grass_23-2147870167.jpg", imageAlt: "Canne da pesca professionali"
|
||||
id: "1", name: "Canne da Pesca", price: "Consulta", imageSrc: "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=400&h=300&fit=crop", imageAlt: "Canne da pesca professionali"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Mulinelli", price: "Consulta", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-fishing-equipment_23-2148189213.jpg", imageAlt: "Mulinelli da pesca"
|
||||
id: "2", name: "Mulinelli", price: "Consulta", imageSrc: "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=400&h=300&fit=crop", imageAlt: "Mulinelli da pesca"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Artificiali e Esche", price: "Consulta", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-fishing-lure-corkboard-fishing-net_23-2148189312.jpg", imageAlt: "Artificiali e esche da pesca"
|
||||
id: "3", name: "Artificiali e Esche", price: "Consulta", imageSrc: "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=400&h=300&fit=crop", imageAlt: "Artificiali e esche da pesca", onProductClick: () => 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() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="Cosa Dicono i Nostri Clienti"
|
||||
description="La soddisfazione dei nostri clienti è il nostro miglior riconoscimento."
|
||||
tag="Recensioni"
|
||||
tagIcon={Star}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marco Rossi", role: "Pescatore Appassionato", testimonial: "Servizio impeccabile! I ragazzi del negozio conoscono veramente la pesca e sanno consigliarti al meglio. Consiglio a tutti gli appassionati.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "Testimonianza di Marco Rossi"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Angela Bianchi", role: "Direttrice Sportiva", testimonial: "Qualità dei prodotti eccellente e staff sempre disponibile. Seven Bass Design è il nostro punto di riferimento per l'attrezzatura.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "Testimonianza di Angela Bianchi"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Luca Ferrari", role: "Pescatore Professionista", testimonial: "Trovare un negozio così attento alla qualità e al servizio è raro. Complimenti al team!", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "Testimonianza di Luca Ferrari"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Giulia Moretti", role: "Istruttrice di Pesca", testimonial: "I miei studenti adorano questo negozio. Prodotti affidabili, prezzi giusti e consulenza sempre gentile e competente.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "Testimonianza di Giulia Moretti"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Contattaci"
|
||||
@@ -165,7 +146,7 @@ export default function LandingPage() {
|
||||
tagIcon={Phone}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bike-shop-with-shop-assistant_23-2148138657.jpg?_wi=3"
|
||||
imageSrc="https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=600&h=400&fit=crop"
|
||||
imageAlt="Contatti Seven Bass Design"
|
||||
inputPlaceholder="La tua email"
|
||||
buttonText="Iscriviti"
|
||||
@@ -214,3 +195,5 @@ export default function LandingPage() {
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
import React from "react";
|
||||
Reference in New Issue
Block a user