diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8b4fc15..9c59f85 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -10,33 +10,30 @@ import { Phone, Star } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Produse", id: "products" }, - { name: "Despre", id: "despre" }, - { name: "Contact", id: "contact" }, - { name: "Showroom", id: "showroom" }, + { name: "Despre", id: "/despre" }, + { name: "Contact", id: "/contact" }, + { name: "Showroom", id: "/showroom" }, ]; const footerColumns = [ { - title: "Produse", - items: [ + title: "Produse", items: [ { label: "Canapele", href: "#products" }, { label: "Mobilier Dormitor", href: "#products" }, { label: "Mobilier Living", href: "#products" }, { label: "Mobilier Modular", href: "#products" }, - { label: "Mobilier La Comandă", href: "contact" }, + { label: "Mobilier La Comandă", href: "/contact" }, ], }, { - title: "Companie", - items: [ - { label: "Despre Noi", href: "despre" }, - { label: "Contact", href: "contact" }, - { label: "Showroom", href: "#contact-cta" }, + title: "Companie", items: [ + { label: "Despre Noi", href: "/despre" }, + { label: "Contact", href: "/contact" }, + { label: "Showroom", href: "/showroom" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Telefon: 0728 872 658", href: "tel:0728872658" }, { label: "Bulevardul General Nicolae Dăscălescu 401", href: "#" }, { label: "Piatra Neamț, Neamț, România", href: "#" }, @@ -73,37 +70,13 @@ export default function ContactPage() { animationType="slide-up" testimonials={[ { - id: "1", - name: "Maria Popescu", - handle: "Proprietar casă, Piatra Neamț", - testimonial: "Am cumpărat o canapea și mobilier dormitor de la Mobilă Bontaș. Calitatea este excelentă și echipa a fost foarte profesională. Recomand!", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg?_wi=2", - imageAlt: "Maria Popescu", - }, + id: "1", name: "Maria Popescu", handle: "Proprietar casă, Piatra Neamț", testimonial: "Am cumpărat o canapea și mobilier dormitor de la Mobilă Bontaș. Calitatea este excelentă și echipa a fost foarte profesională. Recomand!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg?_wi=2", imageAlt: "Maria Popescu"}, { - id: "2", - name: "Ion Dinu", - handle: "Antreprenor, Piatra Neamț", - testimonial: "Am comandat mobilier personalizat pentru birou. A fost exact cum am vrut, de la design la fabricație. Foarte mulțumit de rezultat!", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg?_wi=2", - imageAlt: "Ion Dinu", - }, + id: "2", name: "Ion Dinu", handle: "Antreprenor, Piatra Neamț", testimonial: "Am comandat mobilier personalizat pentru birou. A fost exact cum am vrut, de la design la fabricație. Foarte mulțumit de rezultat!", imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg?_wi=2", imageAlt: "Ion Dinu"}, { - id: "3", - name: "Elena Stanciu", - handle: "Designer Interior, Neamț", - testimonial: "Lucrez cu Mobilă Bontaș de ani de zile. Sunt profesioniști, oferă calitate și pot realiza proiecte complexe fără probleme.", - imageSrc: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg?_wi=2", - imageAlt: "Elena Stanciu", - }, + id: "3", name: "Elena Stanciu", handle: "Designer Interior, Neamț", testimonial: "Lucrez cu Mobilă Bontaș de ani de zile. Sunt profesioniști, oferă calitate și pot realiza proiecte complexe fără probleme.", imageSrc: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg?_wi=2", imageAlt: "Elena Stanciu"}, { - id: "4", - name: "Radu Vasile", - handle: "Familia, Piatra Neamț", - testimonial: "Am renovat apartamentul și am găsit la Mobilă Bontaș tot ce aveam nevoie. Preț corect, calitate bună și livrare la timp!", - imageSrc: "http://img.b2bpic.net/free-photo/business-woman-with-crossed-arms-smiling_23-2148095677.jpg?_wi=2", - imageAlt: "Radu Vasile", - }, + id: "4", name: "Radu Vasile", handle: "Familia, Piatra Neamț", testimonial: "Am renovat apartamentul și am găsit la Mobilă Bontaș tot ce aveam nevoie. Preț corect, calitate bună și livrare la timp!", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-with-crossed-arms-smiling_23-2148095677.jpg?_wi=2", imageAlt: "Radu Vasile"}, ]} speed={40} /> @@ -117,13 +90,9 @@ export default function ContactPage() { description="Suntem așteptând! Vino să vezi colecția completă de mobilier și să discuți cu echipa noastră de specialiști. Bulevardul General Nicolae Dăscălescu 401, Piatra Neamț." buttons={[ { - text: "Sună acum - 0728 872 658", - href: "tel:0728872658", - }, + text: "Sună acum - 0728 872 658", href: "tel:0728872658"}, { - text: "Vizionează pe hartă", - href: "https://maps.google.com/?q=Bulevardul+General+Nicolae+D%C4%83sc%C4%83lescu+401+Piatra+Neam%C8%9B", - }, + text: "Vizionează pe hartă", href: "https://maps.google.com/?q=Bulevardul+General+Nicolae+D%C4%83sc%C4%83lescu+401+Piatra+Neam%C8%9B"}, ]} background={{ variant: "plain" }} useInvertedBackground={true} diff --git a/src/app/despre/page.tsx b/src/app/despre/page.tsx index 465b05f..05d0718 100644 --- a/src/app/despre/page.tsx +++ b/src/app/despre/page.tsx @@ -9,9 +9,9 @@ import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; export default function AboutPage() { const navItems = [ { name: "Produse", id: "products" }, - { name: "Despre", id: "despre" }, - { name: "Contact", id: "contact" }, - { name: "Showroom", id: "showroom" }, + { name: "Despre", id: "/despre" }, + { name: "Contact", id: "/contact" }, + { name: "Showroom", id: "/showroom" }, ]; const footerColumns = [ @@ -21,14 +21,14 @@ export default function AboutPage() { { label: "Mobilier Dormitor", href: "#products" }, { label: "Mobilier Living", href: "#products" }, { label: "Mobilier Modular", href: "#products" }, - { label: "Mobilier La Comandă", href: "contact" }, + { label: "Mobilier La Comandă", href: "/contact" }, ], }, { title: "Companie", items: [ - { label: "Despre Noi", href: "despre" }, - { label: "Contact", href: "contact" }, - { label: "Showroom", href: "#contact-cta" }, + { label: "Despre Noi", href: "/despre" }, + { label: "Contact", href: "/contact" }, + { label: "Showroom", href: "/showroom" }, ], }, { @@ -79,7 +79,7 @@ export default function AboutPage() { mediaAnimation="none" buttons={[ { - text: "Vizitează showroomul", href: "#contact-cta"}, + text: "Vizitează showroomul", href: "/showroom"}, ]} /> diff --git a/src/app/page.tsx b/src/app/page.tsx index 10441b3..50f7ac3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,8 +15,8 @@ export default function HomePage() { const navItems = [ { name: "Produse", id: "products" }, { name: "Despre", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Showroom", id: "showroom" }, + { name: "Contact", id: "/contact" }, + { name: "Showroom", id: "/showroom" }, ]; const heroSlides = [ @@ -83,8 +83,8 @@ export default function HomePage() { { title: "Companie", items: [ { label: "Despre Noi", href: "#about" }, - { label: "Contact", href: "#contact-cta" }, - { label: "Showroom", href: "#contact-cta" }, + { label: "Contact", href: "/contact" }, + { label: "Showroom", href: "/showroom" }, ], }, { diff --git a/src/app/produse/page.tsx b/src/app/produse/page.tsx index 844d5a4..fe7fe92 100644 --- a/src/app/produse/page.tsx +++ b/src/app/produse/page.tsx @@ -11,109 +11,56 @@ import { Phone } from "lucide-react"; export default function ProduseePage() { const navItems = [ { name: "Produse", id: "products" }, - { name: "Despre", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Showroom", id: "showroom" }, + { name: "Despre", id: "/despre" }, + { name: "Contact", id: "/contact" }, + { name: "Showroom", id: "/showroom" }, ]; const allProducts = [ { - id: "1", - name: "Colț modular Juno", - price: "5.500 RON", - imageSrc: "http://img.b2bpic.net/free-photo/home-interior-design-composition_23-2148986635.jpg?_wi=2", - imageAlt: "Colț modular Juno", - }, + id: "1", name: "Colț modular Juno", price: "5.500 RON", imageSrc: "http://img.b2bpic.net/free-photo/home-interior-design-composition_23-2148986635.jpg?_wi=2", imageAlt: "Colț modular Juno"}, { - id: "2", - name: "Fotoliu Juno", - price: "1.200 RON", - imageSrc: "http://img.b2bpic.net/free-photo/full-length-stock-photo-attractive-blonde-caucasian-adult-woman-beige-heels-green-formal-dress-sitting-grey-modern-couch-table-with-red-roses_132075-8159.jpg?_wi=2", - imageAlt: "Fotoliu Juno", - }, + id: "2", name: "Fotoliu Juno", price: "1.200 RON", imageSrc: "http://img.b2bpic.net/free-photo/full-length-stock-photo-attractive-blonde-caucasian-adult-woman-beige-heels-green-formal-dress-sitting-grey-modern-couch-table-with-red-roses_132075-8159.jpg?_wi=2", imageAlt: "Fotoliu Juno"}, { - id: "3", - name: "Pat Dormitor Premium", - price: "3.800 RON", - imageSrc: "http://img.b2bpic.net/free-photo/creative-fengshui-practice-bedroom-arrangement_23-2149135753.jpg?_wi=2", - imageAlt: "Pat Dormitor Premium", - }, + id: "3", name: "Pat Dormitor Premium", price: "3.800 RON", imageSrc: "http://img.b2bpic.net/free-photo/creative-fengshui-practice-bedroom-arrangement_23-2149135753.jpg?_wi=2", imageAlt: "Pat Dormitor Premium"}, { - id: "4", - name: "Mobilier Modular Living", - price: "7.200 RON", - imageSrc: "http://img.b2bpic.net/free-photo/view-futuristic-lighting-lamp-design_23-2151037474.jpg?_wi=2", - imageAlt: "Mobilier Modular Living", - }, + id: "4", name: "Mobilier Modular Living", price: "7.200 RON", imageSrc: "http://img.b2bpic.net/free-photo/view-futuristic-lighting-lamp-design_23-2151037474.jpg?_wi=2", imageAlt: "Mobilier Modular Living"}, { - id: "5", - name: "Canapea Extensibila Modern", - price: "2.800 RON", - imageSrc: "http://img.b2bpic.net/free-photo/home-interior-design-composition_23-2148986635.jpg?_wi=3", - imageAlt: "Canapea Extensibila Modern", - }, + id: "5", name: "Canapea Extensibila Modern", price: "2.800 RON", imageSrc: "http://img.b2bpic.net/free-photo/home-interior-design-composition_23-2148986635.jpg?_wi=3", imageAlt: "Canapea Extensibila Modern"}, { - id: "6", - name: "Dulap Dormitor Spacios", - price: "1.950 RON", - imageSrc: "http://img.b2bpic.net/free-photo/creative-fengshui-practice-bedroom-arrangement_23-2149135753.jpg?_wi=3", - imageAlt: "Dulap Dormitor Spacios", - }, + id: "6", name: "Dulap Dormitor Spacios", price: "1.950 RON", imageSrc: "http://img.b2bpic.net/free-photo/creative-fengshui-practice-bedroom-arrangement_23-2149135753.jpg?_wi=3", imageAlt: "Dulap Dormitor Spacios"}, ]; const categories = [ { - id: "01", - title: "Canapele & Fotolii", - description: "Colecția noastră de canapele confortabile și fotolii elegante pentru saloane moderne", - imageSrc: "http://img.b2bpic.net/free-photo/home-interior-design-composition_23-2148986635.jpg?_wi=4", - imageAlt: "Canapele și fotolii", - }, + id: "01", title: "Canapele & Fotolii", description: "Colecția noastră de canapele confortabile și fotolii elegante pentru saloane moderne", imageSrc: "http://img.b2bpic.net/free-photo/home-interior-design-composition_23-2148986635.jpg?_wi=4", imageAlt: "Canapele și fotolii"}, { - id: "02", - title: "Mobilier Dormitor", - description: "Paturi premium, noptiere și dulapuri pentru dormitoare confortabile și rafinate", - imageSrc: "http://img.b2bpic.net/free-photo/creative-fengshui-practice-bedroom-arrangement_23-2149135753.jpg?_wi=4", - imageAlt: "Mobilier dormitor", - }, + id: "02", title: "Mobilier Dormitor", description: "Paturi premium, noptiere și dulapuri pentru dormitoare confortabile și rafinate", imageSrc: "http://img.b2bpic.net/free-photo/creative-fengshui-practice-bedroom-arrangement_23-2149135753.jpg?_wi=4", imageAlt: "Mobilier dormitor"}, { - id: "03", - title: "Mobilier Living", - description: "Mese de centru, rafturi și mobilier decorativ pentru living-uri funcționale", - imageSrc: "http://img.b2bpic.net/free-photo/full-length-stock-photo-attractive-blonde-caucasian-adult-woman-beige-heels-green-formal-dress-sitting-grey-modern-couch-table-with-red-roses_132075-8159.jpg?_wi=3", - imageAlt: "Mobilier living", - }, + id: "03", title: "Mobilier Living", description: "Mese de centru, rafturi și mobilier decorativ pentru living-uri funcționale", imageSrc: "http://img.b2bpic.net/free-photo/full-length-stock-photo-attractive-blonde-caucasian-adult-woman-beige-heels-green-formal-dress-sitting-grey-modern-couch-table-with-red-roses_132075-8159.jpg?_wi=3", imageAlt: "Mobilier living"}, { - id: "04", - title: "Sisteme Modulare", - description: "Mobilier modular și flexibil adaptat la orice spațiu și necesitate", - imageSrc: "http://img.b2bpic.net/free-photo/view-futuristic-lighting-lamp-design_23-2151037474.jpg?_wi=3", - imageAlt: "Sisteme modulare", - }, + id: "04", title: "Sisteme Modulare", description: "Mobilier modular și flexibil adaptat la orice spațiu și necesitate", imageSrc: "http://img.b2bpic.net/free-photo/view-futuristic-lighting-lamp-design_23-2151037474.jpg?_wi=3", imageAlt: "Sisteme modulare"}, ]; const footerColumns = [ { - title: "Produse", - items: [ + title: "Produse", items: [ { label: "Canapele", href: "#products" }, { label: "Mobilier Dormitor", href: "#products" }, { label: "Mobilier Living", href: "#products" }, { label: "Mobilier Modular", href: "#products" }, - { label: "Mobilier La Comandă", href: "#contact-cta" }, + { label: "Mobilier La Comandă", href: "/contact" }, ], }, { - title: "Companie", - items: [ - { label: "Despre Noi", href: "/" }, - { label: "Contact", href: "#contact-cta" }, - { label: "Showroom", href: "#contact-cta" }, + title: "Companie", items: [ + { label: "Despre Noi", href: "/despre" }, + { label: "Contact", href: "/contact" }, + { label: "Showroom", href: "/showroom" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Telefon: 0728 872 658", href: "tel:0728872658" }, { label: "Bulevardul General Nicolae Dăscălescu 401", href: "#" }, { label: "Piatra Neamț, Neamț, România", href: "#" }, diff --git a/src/app/showroom/page.tsx b/src/app/showroom/page.tsx new file mode 100644 index 0000000..2fa0876 --- /dev/null +++ b/src/app/showroom/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Phone, MapPin } from "lucide-react"; + +export default function ShowroomPage() { + const navItems = [ + { name: "Produse", id: "products" }, + { name: "Despre", id: "/despre" }, + { name: "Contact", id: "/contact" }, + { name: "Showroom", id: "/showroom" }, + ]; + + const footerColumns = [ + { + title: "Produse", items: [ + { label: "Canapele", href: "#products" }, + { label: "Mobilier Dormitor", href: "#products" }, + { label: "Mobilier Living", href: "#products" }, + { label: "Mobilier Modular", href: "#products" }, + { label: "Mobilier La Comandă", href: "/contact" }, + ], + }, + { + title: "Companie", items: [ + { label: "Despre Noi", href: "/despre" }, + { label: "Contact", href: "/contact" }, + { label: "Showroom", href: "/showroom" }, + ], + }, + { + title: "Contact", items: [ + { label: "Telefon: 0728 872 658", href: "tel:0728872658" }, + { label: "Bulevardul General Nicolae Dăscălescu 401", href: "#" }, + { label: "Piatra Neamț, Neamț, România", href: "#" }, + { label: "Rating: 3.9 ⭐ (133 recenzii)", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ console.log("Email submitted:", email)} + /> +
+ + +
+ ); +} \ No newline at end of file