Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aef875cae4 | |||
| 7011792cef |
263
src/app/page.tsx
263
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Acasă",
|
name: "Acasă", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Despre Noi",
|
name: "Despre Noi", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Servicii",
|
name: "Servicii", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Wolf Point Kennel"
|
brandName="Wolf Point Kennel"
|
||||||
/>
|
/>
|
||||||
@@ -55,64 +47,39 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Wolf Point Kennel - Crescători de Încredere"
|
title="Wolf Point Kennel - Crescători de Încredere"
|
||||||
description="Dedicați creșterii responsabile și sănătoase a puilor de rasă. Calitate, pedigree și iubire în fiecare pui care pleacă spre noua lui familie."
|
description="Dedicați creșterii responsabile și sănătoase a puilor de rasă. Calitate, pedigree și iubire în fiecare pui care pleacă spre noua lui familie."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/couple-playing-with-dog-home_23-2148540212.jpg",
|
src: "http://img.b2bpic.net/free-photo/couple-playing-with-dog-home_23-2148540212.jpg", alt: "Client fericit"},
|
||||||
alt: "Client fericit",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/senior-woman-making-gesture-frame_1149-1124.jpg",
|
src: "http://img.b2bpic.net/free-photo/senior-woman-making-gesture-frame_1149-1124.jpg", alt: "Client fericit"},
|
||||||
alt: "Client fericit",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/cute-lady-holding-idea-board-smiling-camera_114579-92473.jpg",
|
src: "http://img.b2bpic.net/free-photo/cute-lady-holding-idea-board-smiling-camera_114579-92473.jpg", alt: "Client fericit"},
|
||||||
alt: "Client fericit",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/vertical-shot-cute-brown-dog-blurry-background_181624-41411.jpg",
|
src: "http://img.b2bpic.net/free-photo/vertical-shot-cute-brown-dog-blurry-background_181624-41411.jpg", alt: "Client fericit"},
|
||||||
alt: "Client fericit",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/dog-with-pink-tongue-licking-his-nose-mouth_493961-632.jpg",
|
src: "http://img.b2bpic.net/free-photo/dog-with-pink-tongue-licking-his-nose-mouth_493961-632.jpg", alt: "Client fericit"},
|
||||||
alt: "Client fericit",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Peste 100+ familii fericite"
|
avatarText="Peste 100+ familii fericite"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Vezi Puii Disponibili",
|
text: "Vezi Puii Disponibili", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Contactează-ne",
|
text: "Contactează-ne", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Certificare Genetică"},
|
||||||
text: "Certificare Genetică",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Îngrijire Veterinară"},
|
||||||
text: "Îngrijire Veterinară",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Socializare Timpurie"},
|
||||||
text: "Socializare Timpurie",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Pedigree Internațional"},
|
||||||
text: "Pedigree Internațional",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Suport Post-Adopție"},
|
||||||
text: "Suport Post-Adopție",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -125,17 +92,11 @@ export default function LandingPage() {
|
|||||||
description="Wolf Point Kennel a pornit dintr-o pasiune imensă pentru canide. Ne asigurăm că fiecare pui crește într-un mediu sigur, sănătos, beneficiind de socializare timpurie și îngrijire veterinară completă. Suntem mândri de liniile noastre de pedigree și de familiile pe care le-am creat."
|
description="Wolf Point Kennel a pornit dintr-o pasiune imensă pentru canide. Ne asigurăm că fiecare pui crește într-un mediu sigur, sănătos, beneficiind de socializare timpurie și îngrijire veterinară completă. Suntem mândri de liniile noastre de pedigree și de familiile pe care le-am creat."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Pedigree Certificat",
|
title: "Pedigree Certificat", description: "Toți câinii noștri dețin documentația completă și testele de sănătate necesare."},
|
||||||
description: "Toți câinii noștri dețin documentația completă și testele de sănătate necesare.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Socializare Completă",
|
title: "Socializare Completă", description: "Puii sunt crescuți în casă, obișnuiți cu oameni, copii și sunete cotidiene."},
|
||||||
description: "Puii sunt crescuți în casă, obișnuiți cu oameni, copii și sunete cotidiene.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Suport Continuu",
|
title: "Suport Continuu", description: "Oferim sfaturi și suport post-achiziție pe toată durata vieții puiului."},
|
||||||
description: "Oferim sfaturi și suport post-achiziție pe toată durata vieții puiului.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36167.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36167.jpg?_wi=1"
|
||||||
imageAlt="Echipa Wolf Point Kennel"
|
imageAlt="Echipa Wolf Point Kennel"
|
||||||
@@ -149,23 +110,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Dresaj și Agilitate",
|
title: "Dresaj și Agilitate", description: "Includem baze de dresaj pentru a facilita integrarea în noua familie.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-having-fun-with-her-dog-garden_23-2147902236.jpg?_wi=1", imageAlt: "Dresaj"},
|
||||||
description: "Includem baze de dresaj pentru a facilita integrarea în noua familie.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-having-fun-with-her-dog-garden_23-2147902236.jpg?_wi=1",
|
|
||||||
imageAlt: "Dresaj",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Control Veterinar Riguros",
|
title: "Control Veterinar Riguros", description: "Monitorizăm fiecare pui pentru orice problemă de sănătate încă de la naștere.", imageSrc: "http://img.b2bpic.net/free-photo/cute-dog-consultation_23-2149314384.jpg?_wi=1", imageAlt: "Veterinar"},
|
||||||
description: "Monitorizăm fiecare pui pentru orice problemă de sănătate încă de la naștere.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-dog-consultation_23-2149314384.jpg?_wi=1",
|
|
||||||
imageAlt: "Veterinar",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Nutriție Premium",
|
title: "Nutriție Premium", description: "Folosim doar alimente de cea mai înaltă calitate pentru dezvoltarea armonioasă.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dog-sniffing-cereals_23-2148861559.jpg?_wi=1", imageAlt: "Nutriție"},
|
||||||
description: "Folosim doar alimente de cea mai înaltă calitate pentru dezvoltarea armonioasă.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-dog-sniffing-cereals_23-2148861559.jpg?_wi=1",
|
|
||||||
imageAlt: "Nutriție",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Standardele Noastre Wolf Point"
|
title="Standardele Noastre Wolf Point"
|
||||||
description="Nu facem compromisuri când vine vorba de sănătatea și fericirea puilor noștri."
|
description="Nu facem compromisuri când vine vorba de sănătatea și fericirea puilor noștri."
|
||||||
@@ -180,41 +129,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Golden Retriever (Mascul)", price: "Disponibil", imageSrc: "http://img.b2bpic.net/free-photo/adorable-beagle-enjoying-walk-nature_23-2148576910.jpg"},
|
||||||
name: "Golden Retriever (Mascul)",
|
|
||||||
price: "Disponibil",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/adorable-beagle-enjoying-walk-nature_23-2148576910.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Labrador Chocolate (Femelă)", price: "Disponibil", imageSrc: "http://img.b2bpic.net/free-photo/woman-summer-forest-playing-with-dog_1157-32819.jpg"},
|
||||||
name: "Labrador Chocolate (Femelă)",
|
|
||||||
price: "Disponibil",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-summer-forest-playing-with-dog_1157-32819.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Ciobănesc German (Mascul)", price: "Disponibil", imageSrc: "http://img.b2bpic.net/free-photo/woman-feeding-puppy_329181-10906.jpg"},
|
||||||
name: "Ciobănesc German (Mascul)",
|
|
||||||
price: "Disponibil",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-feeding-puppy_329181-10906.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Golden Retriever (Femelă)", price: "Disponibil", imageSrc: "http://img.b2bpic.net/free-photo/cocker-spaniel-eating-birthday-cake-home_1303-27306.jpg"},
|
||||||
name: "Golden Retriever (Femelă)",
|
|
||||||
price: "Disponibil",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cocker-spaniel-eating-birthday-cake-home_1303-27306.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Border Collie (Mascul)", price: "Disponibil", imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-hugging-her-pet-grass_23-2148045755.jpg"},
|
||||||
name: "Border Collie (Mascul)",
|
|
||||||
price: "Disponibil",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-hugging-her-pet-grass_23-2148045755.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Labrador Negru (Mascul)", price: "Disponibil", imageSrc: "http://img.b2bpic.net/free-photo/labrador-dog-portrait-outdoor_23-2148861559.jpg"},
|
||||||
name: "Labrador Negru (Mascul)",
|
|
||||||
price: "Disponibil",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-chicken-oil-garlic-sauce-spices-chicken-with-herbs-lavash-board_140725-72579.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Puii Disponibili"
|
title="Puii Disponibili"
|
||||||
description="Descoperă puii care sunt gata să își găsească o casă primitoare."
|
description="Descoperă puii care sunt gata să își găsească o casă primitoare."
|
||||||
@@ -228,34 +153,19 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "basic",
|
id: "basic", price: "Standard", name: "Pachet Esențial", features: [
|
||||||
price: "Standard",
|
"Vaccinuri la zi", "Carnet de sănătate", "Microcipare"],
|
||||||
name: "Pachet Esențial",
|
|
||||||
features: [
|
|
||||||
"Vaccinuri la zi",
|
|
||||||
"Carnet de sănătate",
|
|
||||||
"Microcipare",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Află detalii",
|
text: "Află detalii"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "pro",
|
id: "pro", price: "Premium", name: "Pachet Wolf Point", features: [
|
||||||
price: "Premium",
|
"Toate cele de la Standard", "Kit de hrană pentru 2 săptămâni", "Jucării și accesorii", "Ședință dresaj"],
|
||||||
name: "Pachet Wolf Point",
|
|
||||||
features: [
|
|
||||||
"Toate cele de la Standard",
|
|
||||||
"Kit de hrană pentru 2 săptămâni",
|
|
||||||
"Jucării și accesorii",
|
|
||||||
"Ședință dresaj",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Află detalii",
|
text: "Află detalii"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -271,26 +181,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "15+", title: "Ani Experiență", description: "Dedicare în creșterea câinilor.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-exercising-with-her-dog_23-2148991869.jpg"},
|
||||||
value: "15+",
|
|
||||||
title: "Ani Experiență",
|
|
||||||
description: "Dedicare în creșterea câinilor.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-exercising-with-her-dog_23-2148991869.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "500+", title: "Pui Fericiți", description: "Adaptați în familii iubitoare.", imageSrc: "http://img.b2bpic.net/free-photo/girl-is-real-dog-lover_329181-10380.jpg"},
|
||||||
value: "500+",
|
|
||||||
title: "Pui Fericiți",
|
|
||||||
description: "Adaptați în familii iubitoare.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-is-real-dog-lover_329181-10380.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "100%", title: "Sănătate Certificată", description: "Teste genetice și medicale.", imageSrc: "http://img.b2bpic.net/free-photo/dog-vet-health-check_23-2148982335.jpg"},
|
||||||
value: "100%",
|
|
||||||
title: "Sănătate Certificată",
|
|
||||||
description: "Teste genetice și medicale.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/domestic-pet-food-assortment_23-2148982335.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Wolf Point în Cifre"
|
title="Wolf Point în Cifre"
|
||||||
description="Experiența și dedicarea noastră pe scurt."
|
description="Experiența și dedicarea noastră pe scurt."
|
||||||
@@ -303,60 +198,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Ana Maria", date: "12.05.2023", title: "Stăpân fericit", quote: "Am primit cel mai sănătos și jucăuș pui. Recomand cu încredere!", tag: "Golden Retriever", avatarSrc: "http://img.b2bpic.net/free-photo/business-man-serving-coffee_23-2148480368.jpg", imageSrc: "http://img.b2bpic.net/free-photo/dog-close-up-portrait-dark-wall_475641-583.jpg", imageAlt: "stăpân fericit cu câine"},
|
||||||
name: "Ana Maria",
|
|
||||||
date: "12.05.2023",
|
|
||||||
title: "Stăpân fericit",
|
|
||||||
quote: "Am primit cel mai sănătos și jucăuș pui. Recomand cu încredere!",
|
|
||||||
tag: "Golden Retriever",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/business-man-serving-coffee_23-2148480368.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dog-close-up-portrait-dark-wall_475641-583.jpg",
|
|
||||||
imageAlt: "stăpân fericit cu câine",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Ion Popescu", date: "15.06.2023", title: "Profesioniști", quote: "Dedicarea lor pentru câini este vizibilă în fiecare detaliu. Mulțumim Wolf Point!", tag: "Ciobănesc German", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860247.jpg", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36167.jpg?_wi=2", imageAlt: "stăpân fericit cu câine"},
|
||||||
name: "Ion Popescu",
|
|
||||||
date: "15.06.2023",
|
|
||||||
title: "Profesioniști",
|
|
||||||
quote: "Dedicarea lor pentru câini este vizibilă în fiecare detaliu. Mulțumim Wolf Point!",
|
|
||||||
tag: "Ciobănesc German",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860247.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36167.jpg?_wi=2",
|
|
||||||
imageAlt: "stăpân fericit cu câine",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Elena Dumitru", date: "20.07.2023", title: "Recomand", quote: "Puiul nostru este perfect, bine socializat și iubit. O experiență minunată.", tag: "Labrador", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-kissing-her-adorable-bonny-dog-lovely-girl-red-sweater-white-dress-sharing-love-with-pet_197531-11836.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-having-fun-with-her-dog-garden_23-2147902236.jpg?_wi=2", imageAlt: "stăpân fericit cu câine"},
|
||||||
name: "Elena Dumitru",
|
|
||||||
date: "20.07.2023",
|
|
||||||
title: "Recomand",
|
|
||||||
quote: "Puiul nostru este perfect, bine socializat și iubit. O experiență minunată.",
|
|
||||||
tag: "Labrador",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-kissing-her-adorable-bonny-dog-lovely-girl-red-sweater-white-dress-sharing-love-with-pet_197531-11836.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-having-fun-with-her-dog-garden_23-2147902236.jpg?_wi=2",
|
|
||||||
imageAlt: "stăpân fericit cu câine",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Cristian Vasile", date: "10.08.2023", title: "Calitate", quote: "Cea mai bună alegere pentru puiul nostru. Suportul oferit a fost de neegalat.", tag: "Border Collie", avatarSrc: "http://img.b2bpic.net/free-photo/rear-view-man-putting-engagement-ring-girlfriend-s-finger_23-2147891260.jpg", imageSrc: "http://img.b2bpic.net/free-photo/cute-dog-consultation_23-2149314384.jpg?_wi=2", imageAlt: "stăpân fericit cu câine"},
|
||||||
name: "Cristian Vasile",
|
|
||||||
date: "10.08.2023",
|
|
||||||
title: "Calitate",
|
|
||||||
quote: "Cea mai bună alegere pentru puiul nostru. Suportul oferit a fost de neegalat.",
|
|
||||||
tag: "Border Collie",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/rear-view-man-putting-engagement-ring-girlfriend-s-finger_23-2147891260.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-dog-consultation_23-2149314384.jpg?_wi=2",
|
|
||||||
imageAlt: "stăpân fericit cu câine",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Maria Ionescu", date: "05.09.2023", title: "Excelent", quote: "Suntem foarte mulțumiți de puiul adoptat. Wolf Point Kennel este top!", tag: "Labrador", avatarSrc: "http://img.b2bpic.net/free-photo/adult-woman-playing-with-her-dog-park_23-2148345896.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dog-sniffing-cereals_23-2148861559.jpg?_wi=2", imageAlt: "stăpân fericit cu câine"},
|
||||||
name: "Maria Ionescu",
|
|
||||||
date: "05.09.2023",
|
|
||||||
title: "Excelent",
|
|
||||||
quote: "Suntem foarte mulțumiți de puiul adoptat. Wolf Point Kennel este top!",
|
|
||||||
tag: "Labrador",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/adult-woman-playing-with-her-dog-park_23-2148345896.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-dog-sniffing-cereals_23-2148861559.jpg?_wi=2",
|
|
||||||
imageAlt: "stăpân fericit cu câine",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Ce spun clienții noștri"
|
title="Ce spun clienții noștri"
|
||||||
description="Experiența familiilor care au ales Wolf Point Kennel."
|
description="Experiența familiilor care au ales Wolf Point Kennel."
|
||||||
@@ -367,8 +217,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Contact Direct"
|
tag="Contact Direct"
|
||||||
title="Contactează Wolf Point Kennel"
|
title="Contactează Wolf Point Kennel"
|
||||||
description="Suntem aici să răspundem la orice întrebare legată de puii noștri sau serviciile oferite. Ne găsiți și la telefon zilnic între orele 09:00 - 18:00."
|
description="Suntem aici să răspundem la orice întrebare legată de puii noștri sau serviciile oferite. Ne găsiți și la telefon zilnic între orele 09:00 - 18:00."
|
||||||
@@ -386,33 +235,21 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Despre Noi",
|
label: "Despre Noi", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Puii Disponibili",
|
label: "Puii Disponibili", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contactează-ne",
|
label: "Contactează-ne", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Locație",
|
label: "Locație", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Tel: +40 700 000 000",
|
label: "Tel: +40 700 000 000", href: "tel:+40700000000"},
|
||||||
href: "tel:+40700000000",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Email: contact@wolfpoint.ro",
|
label: "Email: contact@wolfpoint.ro", href: "mailto:contact@wolfpoint.ro"},
|
||||||
href: "mailto:contact@wolfpoint.ro",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user