6 Commits

Author SHA1 Message Date
7837684e75 Update src/app/page.tsx 2026-01-29 15:58:33 +00:00
6cbae29cc9 Update src/app/page.tsx 2026-01-29 15:49:58 +00:00
3259d700ba Update src/app/blog/page.tsx 2026-01-29 15:49:58 +00:00
6ad6db48f2 Update src/app/page.tsx 2026-01-27 23:55:51 +00:00
1e7a21ad1e Update src/app/layout.tsx 2026-01-27 23:55:50 +00:00
18eca1a59e Update src/app/blog/page.tsx 2026-01-27 23:55:49 +00:00
3 changed files with 109 additions and 110 deletions

View File

@@ -23,39 +23,39 @@ type BlogPost = {
const defaultPosts: BlogPost[] = [ const defaultPosts: BlogPost[] = [
{ {
id: "1", category: "Design", title: "UX review presentations", excerpt: "How do you create compelling presentations that wow your colleagues and impress your managers?", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Abstract design with purple and silver tones", authorName: "Olivia Rhye", authorAvatar: "/placeholders/placeholder3.avif", date: "20 Jan 2025", onBlogClick: () => console.log("Blog 1 clicked"), id: "1", category: "Cosmetic Dentistry", title: "The Art of Smile Design", excerpt: "Discover how our digital smile design technology helps you visualize your perfect smile before treatment begins.", imageSrc: "https://images.unsplash.com/photo-1587590081050-7e70edd07f32?w=800&h=600&fit=crop", imageAlt: "Smile design consultation", authorName: "Dr. Elizabeth Foster", authorAvatar: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop", date: "20 Jan 2025", onBlogClick: () => console.log("Blog 1 clicked"),
}, },
{ {
id: "2", category: "Development", title: "Building scalable applications", excerpt: "Learn the best practices for building applications that can handle millions of users.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Development workspace", authorName: "John Smith", authorAvatar: "/placeholders/placeholder4.webp", date: "18 Jan 2025", onBlogClick: () => console.log("Blog 2 clicked"), id: "2", category: "Dental Technology", title: "Advanced Implant Solutions", excerpt: "Learn how modern dental implant technology restores function and beauty with natural-looking results.", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173f31c77?w=800&h=600&fit=crop", imageAlt: "Dental implant technology", authorName: "Dr. Michael Chang", authorAvatar: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop", date: "18 Jan 2025", onBlogClick: () => console.log("Blog 2 clicked"),
}, },
{ {
id: "3", category: "Marketing", title: "Content strategy essentials", excerpt: "Discover how to create a content strategy that drives engagement and conversions.", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Marketing strategy board", authorName: "Sarah Johnson", authorAvatar: "/placeholders/placeholder3.avif", date: "15 Jan 2025", onBlogClick: () => console.log("Blog 3 clicked"), id: "3", category: "Preventive Care", title: "Maintaining Your Perfect Smile", excerpt: "Expert tips on maintaining your dental health and preserving your beautiful smile for life.", imageSrc: "https://images.unsplash.com/photo-1631217174556-e5b42bb30ac4?w=800&h=600&fit=crop", imageAlt: "Preventive dental care", authorName: "Dr. Sarah Johnson", authorAvatar: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop", date: "15 Jan 2025", onBlogClick: () => console.log("Blog 3 clicked"),
}, },
{ {
id: "4", category: "Product", title: "Product management 101", excerpt: "Everything you need to know to become an effective product manager in 2025.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Product planning session", authorName: "Mike Davis", authorAvatar: "/placeholders/placeholder4.webp", date: "12 Jan 2025", onBlogClick: () => console.log("Blog 4 clicked"), id: "4", category: "Patient Stories", title: "Smile Transformations: Real Results", excerpt: "See how our patients' lives changed when they invested in their smiles through our personalized treatments.", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173f31c77?w=800&h=600&fit=crop", imageAlt: "Smile transformation results", authorName: "Dr. James Mitchell", authorAvatar: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop", date: "12 Jan 2025", onBlogClick: () => console.log("Blog 4 clicked"),
}, },
]; ];
const footerColumns: FooterColumn[] = [ const footerColumns: FooterColumn[] = [
{ {
title: "Product", items: [ title: "Services", items: [
{ label: "Features", href: "/features" }, { label: "Cosmetic Dentistry", href: "#services" },
{ label: "Pricing", href: "/pricing" }, { label: "Dental Implants", href: "#services" },
{ label: "FAQ", href: "/faq" }, { label: "Orthodontics", href: "#services" },
], ],
}, },
{ {
title: "Company", items: [ title: "Practice", items: [
{ label: "About", href: "/about" }, { label: "About Us", href: "#about" },
{ label: "Blog", href: "/blog" }, { label: "Our Team", href: "#team" },
{ label: "Careers", href: "/careers" }, { label: "Contact", href: "#contact" },
], ],
}, },
{ {
title: "Resources", items: [ title: "Resources", items: [
{ label: "Documentation", href: "/docs" }, { label: "Blog", href: "/blog" },
{ label: "Support", href: "/support" }, { label: "Patient Forms", href: "#" },
{ label: "Contact", href: "/contact" }, { label: "Smile Gallery", href: "#" },
], ],
}, },
]; ];
@@ -88,7 +88,7 @@ export default function BlogPage() {
if (Array.isArray(data) && data.length > 0) { if (Array.isArray(data) && data.length > 0) {
const mappedPosts = data.map((post: any) => ({ const mappedPosts = data.map((post: any) => ({
id: post.id || String(Math.random()), id: post.id || String(Math.random()),
category: post.category || "General", title: post.title || "Untitled", excerpt: post.excerpt || post.content.slice(0, 30) || "", imageSrc: post.imageUrl || "/placeholders/placeholder3.avif", imageAlt: post.imageAlt || post.title || "", authorName: post.author?.name || "Anonymous", authorAvatar: post.author?.avatar || "/placeholders/placeholder3.avif", date: post.date || post.createdAt || new Date().toLocaleDateString("en-GB", { day: "numeric", month: "short", year: "numeric" }), category: post.category || "Dental Care", title: post.title || "Untitled", excerpt: post.excerpt || post.content.slice(0, 30) || "", imageSrc: post.imageUrl || "https://images.unsplash.com/photo-1587590081050-7e70edd07f32?w=800&h=600&fit=crop", imageAlt: post.imageAlt || post.title || "", authorName: post.author?.name || "Anonymous", authorAvatar: post.author?.avatar || "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop", date: post.date || post.createdAt || new Date().toLocaleDateString("en-GB", { day: "numeric", month: "short", year: "numeric" }),
onBlogClick: () => console.log(`Blog ${post.id} clicked`), onBlogClick: () => console.log(`Blog ${post.id} clicked`),
})); }));
setPosts(mappedPosts); setPosts(mappedPosts);
@@ -122,26 +122,25 @@ export default function BlogPage() {
<ReactLenis root> <ReactLenis root>
<div className="min-h-screen bg-background"> <div className="min-h-screen bg-background">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Pizzeria Madrid" brandName="Luxury Dental Care"
navItems={[ navItems={[
{ name: "Home", id: "/home" }, { name: "Home", id: "/" },
{ name: "Home", id: "hero" }, { name: "Services", id: "services" },
{ name: "Pizzas", id: "pizzas" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Reserve Now", href: "#contact" }} button={{ text: "Schedule Consultation", href: "#contact" }}
/> />
{isLoading ? ( {isLoading ? (
<div className="w-content-width mx-auto py-20 text-center"> <div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p> <p className="text-foreground">Loading articles...</p>
</div> </div>
) : ( ) : (
<BlogCardOne <BlogCardOne
blogs={posts} blogs={posts}
title="Latest Articles" title="Dental Care Insights"
description="Stay updated with our latest insights" description="Learn from our expert dentists about the latest in cosmetic, restorative, and preventive dental care"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
carouselMode="buttons" carouselMode="buttons"
@@ -150,31 +149,31 @@ export default function BlogPage() {
)} )}
<FooterBase <FooterBase
logoText="Pizzeria Madrid" logoText="Luxury Dental Care California"
copyrightText="© 2025 Pizzeria Madrid | Authentic Italian Pizza Since 2008" copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
columns={[ columns={[
{ {
title: "Menu", items: [ title: "Services", items: [
{ label: "Our Pizzas", href: "pizzas" }, { label: "Cosmetic Dentistry", href: "#services" },
{ label: "Appetizers", href: "#" }, { label: "Dental Implants", href: "#services" },
{ label: "Desserts", href: "#" }, { label: "Orthodontics", href: "#services" },
{ label: "Beverages", href: "#" } { label: "Restorative Care", href: "#services" }
] ]
}, },
{ {
title: "Restaurant", items: [ title: "Practice", items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "#about" },
{ label: "Hours", href: "#" }, { label: "Our Team", href: "#team" },
{ label: "Location", href: "#" }, { label: "Technology", href: "#features" },
{ label: "Contact", href: "contact" } { label: "Contact", href: "#contact" }
] ]
}, },
{ {
title: "Connect", items: [ title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "Google Reviews", href: "https://google.com" },
{ label: "Reviews", href: "#" } { label: "Blog", href: "/blog" }
] ]
} }
]} ]}

View File

@@ -10,19 +10,19 @@ const ibmPlexSans = IBM_Plex_Sans({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Pizzeria Madrid | Authentic Neapolitan Pizza in Madrid", description: "Experience authentic Italian wood-fired pizza in Madrid. Handcrafted pizzas with imported ingredients, traditional recipes, and authentic atmosphere since 2008.", keywords: "pizza, neapolitan, Madrid, Italian, wood-fired, authentic, pizzeria", metadataBase: new URL("https://pizzeriamadrid.com"), title: "Luxury Dentist in California | Premier Dental Care", description: "Experience the highest quality dental care in California. State-of-the-art technology, expert cosmetic and restorative dentistry, and personalized treatment plans.", keywords: "luxury dentist, California, cosmetic dentistry, dental implants, smile design, premium dental care", metadataBase: new URL("https://luxurydentistcalifornia.com"),
alternates: { alternates: {
canonical: "https://pizzeriamadrid.com" canonical: "https://luxurydentistcalifornia.com"
}, },
openGraph: { openGraph: {
title: "Pizzeria Madrid | Authentic Neapolitan Pizza", description: "Discover authentic Italian wood-fired pizza in the heart of Madrid with traditional recipes and imported ingredients.", url: "https://pizzeriamadrid.com", siteName: "Pizzeria Madrid", type: "website", images: [ title: "Luxury Dentist in California | Premier Dental Care", description: "Experience the highest quality dental care in California with state-of-the-art technology and expert dentists.", url: "https://luxurydentistcalifornia.com", siteName: "Luxury Dental Care California", type: "website", images: [
{ {
url: "https://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg", alt: "Authentic wood-fired pizza from Pizzeria Madrid" url: "https://images.unsplash.com/photo-1631217174556-e5b42bb30ac4?w=1200&h=630&fit=crop", alt: "State-of-the-art dental practice in California"
} }
] ]
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Pizzeria Madrid | Authentic Neapolitan Pizza", description: "Experience authentic Italian wood-fired pizza in Madrid with traditional recipes and imported ingredients.", images: ["https://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg"] card: "summary_large_image", title: "Luxury Dentist in California | Premier Dental Care", description: "Experience the highest quality dental care in California with state-of-the-art technology.", images: ["https://images.unsplash.com/photo-1631217174556-e5b42bb30ac4?w=1200&h=630&fit=crop"]
}, },
robots: { robots: {
index: true, index: true,
@@ -1265,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -9,9 +9,9 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import { Flame, Pizza, Star, Mail } from 'lucide-react'; import { Sparkles, Smile, Star, Mail } from 'lucide-react';
export default function PizzeriaPage() { export default function LuxuryDentistPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -27,68 +27,68 @@ export default function PizzeriaPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Pizzeria Madrid" brandName="Luxury Dental Care"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Pizzas", id: "pizzas" }, { name: "Services", id: "services" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Reserve Now", href: "#contact" text: "Schedule Consultation", href: "#contact"
}} }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitKpi <HeroSplitKpi
title="Authentic Italian Pizza in the Heart of Madrid" title="California's Premier Luxury Dental Practice"
description="Experience the true taste of Naples with our wood-fired pizzas crafted using the finest Italian ingredients and time-honored traditions since 2008." description="Experience world-class cosmetic and restorative dentistry with cutting-edge technology. Our award-winning dentists are committed to creating stunning smiles with personalized care and exceptional attention to detail."
tag="Est. 2008" tag="Excellence Since 2005"
tagIcon={Flame} tagIcon={Sparkles}
background={{ variant: "glowing-orb" }} background={{ variant: "glowing-orb" }}
imageSrc="https://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg" imageSrc="https://img.b2bpic.net/free-photo/smiling-young-man-sitting-dentist-chair-while-doctor-examining-his-teeth_158595-7733.jpg?id=18850197"
imageAlt="Wood-fired pizza from our oven" imageAlt="Modern luxury dental practice with state-of-the-art equipment"
imagePosition="right" imagePosition="right"
kpis={[ kpis={[
{ value: "15+", label: "Signature Pizzas" }, { value: "5000+", label: "Satisfied Patients" },
{ value: "100%", label: "Authentic Ingredients" }, { value: "99.8%", label: "Satisfaction Rate" },
{ value: "1000+", label: "Happy Guests Monthly" } { value: "15+", label: "Industry Awards" }
]} ]}
enableKpiAnimation={true} enableKpiAnimation={true}
buttons={[ buttons={[
{ text: "See Our Menu", href: "#pizzas" }, { text: "View Our Services", href: "#services" },
{ text: "Make a Reservation", href: "#contact" } { text: "Book Your Visit", href: "#contact" }
]} ]}
/> />
</div> </div>
<div id="pizzas" data-section="pizzas"> <div id="services" data-section="services">
<ProductCardTwo <ProductCardTwo
title="Our Signature Pizzas" title="Our Signature Services"
description="Each pizza is handcrafted with love using imported Italian ingredients and our signature wood-fired technique." description="From cosmetic enhancement to restorative excellence, our comprehensive services transform smiles and improve oral health with precision and artistry."
tag="Pizza Menu" tag="Premium Dental Services"
tagIcon={Pizza} tagIcon={Smile}
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
products={[ products={[
{ {
id: "1", brand: "Classic", name: "Margherita", price: "€12.50", rating: 5, id: "1", brand: "Cosmetic", name: "Smile Design & Whitening", price: "From $500", rating: 5,
reviewCount: "234", imageSrc: "https://img.b2bpic.net/free-photo/high-angle-delicious-sliced-pizza-with-copy-space_23-2148753765.jpg", imageAlt: "Margherita pizza with fresh basil and mozzarella" reviewCount: "234", imageSrc: "https://images.unsplash.com/photo-1587590081050-7e70edd07f32?w=500&h=500&fit=crop", imageAlt: "Cosmetic smile design consultation"
}, },
{ {
id: "2", brand: "Premium", name: "Pepperoni Napoli", price: "€14.90", rating: 5, id: "2", brand: "Restorative", name: "Dental Implants & Crowns", price: "From $1,200", rating: 5,
reviewCount: "312", imageSrc: "https://img.b2bpic.net/free-photo/top-view-pizza-dough-with-wooden-board-tomatoes_23-2148753786.jpg", imageAlt: "Pepperoni pizza with crispy edges and authentic toppings" reviewCount: "312", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173f31c77?w=500&h=500&fit=crop", imageAlt: "Advanced dental implant technology"
}, },
{ {
id: "3", brand: "Gourmet", name: "Quattro Formaggi", price: "€15.50", rating: 5, id: "3", brand: "Advanced", name: "Orthodontics & Aligners", price: "From $800", rating: 5,
reviewCount: "289", imageSrc: "https://img.b2bpic.net/free-photo/high-angle-delicious-pizza-with-tomatoes-parmesan-cheese_23-2148753756.jpg", imageAlt: "Creamy four-cheese pizza with premium mozzarella blend" reviewCount: "289", imageSrc: "https://images.unsplash.com/photo-1631217174556-e5b42bb30ac4?w=500&h=500&fit=crop", imageAlt: "Clear aligner orthodontic treatment"
} }
]} ]}
buttons={[ buttons={[
{ text: "View Full Menu", href: "#contact" } { text: "Schedule Consultation", href: "#contact" }
]} ]}
/> />
</div> </div>
@@ -96,11 +96,11 @@ export default function PizzeriaPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
heading={[ heading={[
{ type: "text", content: "Where Tradition Meets Madrid's Passion for Great Food" } { type: "text", content: "Trusted Excellence in Dental Care Across California" }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
buttons={[ buttons={[
{ text: "Visit Us Today", href: "#contact" }, { text: "Meet Our Team", href: "#testimonials" },
{ text: "Learn More", href: "#contact" } { text: "Learn More", href: "#contact" }
]} ]}
/> />
@@ -108,9 +108,9 @@ export default function PizzeriaPage() {
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardOne <FeatureCardOne
title="Why Our Pizza Stands Out" title="Why Choose Our Luxury Practice"
description="From our imported Italian flour to our hand-tossed dough, every detail reflects our commitment to authenticity and quality." description="We combine artistic excellence with scientific precision, utilizing the latest technology and techniques to deliver transformative results that exceed expectations."
tag="Our Difference" tag="Premium Dental Excellence"
tagIcon={Star} tagIcon={Star}
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
@@ -118,10 +118,10 @@ export default function PizzeriaPage() {
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
features={[ features={[
{ {
title: "Wood-Fired Oven", description: "Imported stone oven heated to 400°C for perfect crust every time", imageSrc: "https://img.b2bpic.net/free-photo/restaurant-interior_1127-3394.jpg" title: "Digital Technology", description: "3D imaging, intraoral cameras, and computer-aided design for precise diagnostics and treatment planning", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173f31c77?w=500&h=400&fit=crop"
}, },
{ {
title: "Artisan Craftsmanship", description: "Our pizzaiolos trained in Naples bring decades of experience to each pizza", imageSrc: "https://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg" title: "Master Craftsmanship", description: "Award-winning dentists with decades of experience in cosmetic and restorative excellence", imageSrc: "https://images.unsplash.com/photo-1631217174556-e5b42bb30ac4?w=500&h=400&fit=crop"
} }
]} ]}
/> />
@@ -129,30 +129,30 @@ export default function PizzeriaPage() {
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSix <TestimonialCardSix
title="What Our Guests Say" title="What Our Patients Say"
description="Join thousands of Madrileños who've discovered authentic Italian pizza in the heart of our city" description="Discover why hundreds of California's discerning patients trust us for their dental care and smile transformations"
tag="Reviews" tag="Patient Reviews"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
animationType="slide-up" animationType="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", name: "María García", handle: "Madrid Local", testimonial: "The best pizza I've had outside of Italy. The margherita is perfection - simple, authentic, and absolutely delicious!", imageSrc: "https://img.b2bpic.net/free-photo/closeup-shot-handsome-male-smiling_181624-41237.jpg", imageAlt: "María García" id: "1", name: "Jennifer Martinez", handle: "San Diego Patient", testimonial: "The most professional and caring dental experience I've ever had. The results exceeded my expectations and the attention to detail is extraordinary.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop", imageAlt: "Jennifer Martinez"
}, },
{ {
id: "2", name: "Juan Rodríguez", handle: "Food Blogger", testimonial: "Finally found an authentic pizzeria in Madrid that respects the craft. The dough, the ingredients, the passion - it's all there.", imageSrc: "https://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", imageAlt: "Juan Rodríguez" id: "2", name: "Robert Chen", handle: "Business Executive", testimonial: "Finally found a dentist who understands aesthetics and function. My smile is now my confidence. Highly recommended to anyone serious about quality.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop", imageAlt: "Robert Chen"
}, },
{ {
id: "3", name: "Sofia Martínez", handle: "Restaurant Critic", testimonial: "An absolute gem. The wood-fired pizzas here transport you straight to Naples. Highly recommended for anyone serious about pizza.", imageSrc: "https://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg", imageAlt: "Sofia Martínez" id: "3", name: "Sarah Williams", handle: "Entertainment Industry", testimonial: "This is the place where art meets science. My smile transformation has been life-changing. The expertise here is unmatched.", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop", imageAlt: "Sarah Williams"
}, },
{ {
id: "4", name: "Antonio Perez", handle: "Regular Customer", testimonial: "I've been coming here for 3 years and the quality never wavers. This is Madrid's treasure for authentic Italian pizza.", imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg", imageAlt: "Antonio Perez" id: "4", name: "Michael Torres", handle: "Loyal Patient", testimonial: "I've been a patient for 8 years. The consistent excellence, warm staff, and cutting-edge treatments keep me coming back with confidence.", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop", imageAlt: "Michael Torres"
}, },
{ {
id: "5", name: "Elena López", handle: "Travel Blogger", testimonial: "When visiting Madrid, this pizzeria is a must-visit. Authentic atmosphere, perfect pizzas, and warm hospitality.", imageSrc: "https://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg", imageAlt: "Elena López" id: "5", name: "Amanda Rodriguez", handle: "Social Media Influencer", testimonial: "When your smile matters for your career, you go to the best. This practice delivered a smile that's both beautiful and natural-looking.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop", imageAlt: "Amanda Rodriguez"
}, },
{ {
id: "6", name: "Carlos Jiménez", handle: "Culinary Enthusiast", testimonial: "The attention to detail here is remarkable. Every ingredient matters and you can taste the difference in every bite.", imageSrc: "https://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg", imageAlt: "Carlos Jiménez" id: "6", name: "David Kim", handle: "Healthcare Professional", testimonial: "The clinical precision combined with artistic vision is remarkable. This team truly understands comprehensive dental care at the highest level.", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop", imageAlt: "David Kim"
} }
]} ]}
/> />
@@ -160,47 +160,47 @@ export default function PizzeriaPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
tag="Stay Connected" tag="Get In Touch"
tagIcon={Mail} tagIcon={Mail}
title="Join Our Pizza Lovers Community" title="Schedule Your Luxury Dental Experience"
description="Subscribe to our newsletter for special offers, new pizza releases, and invitations to exclusive tasting events." description="Connect with our team to discuss your smile goals and discover how our personalized treatments can transform your dental health and confidence."
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
imageSrc="https://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg" imageSrc="https://images.unsplash.com/photo-1576091160550-112173f31c77?w=600&h=600&fit=crop"
imageAlt="Our pizzaiolos crafting fresh pizza" imageAlt="Comfortable consultation room at our luxury dental practice"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Subscribe" buttonText="Get Started"
termsText="We respect your privacy. Unsubscribe anytime." termsText="We respect your privacy. Unsubscribe anytime. Your smile deserves the best care."
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
logoText="Pizzeria Madrid" logoText="Luxury Dental Care California"
copyrightText="© 2025 Pizzeria Madrid | Authentic Italian Pizza Since 2008" copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
columns={[ columns={[
{ {
title: "Menu", items: [ title: "Services", items: [
{ label: "Our Pizzas", href: "pizzas" }, { label: "Cosmetic Dentistry", href: "#services" },
{ label: "Appetizers", href: "#" }, { label: "Dental Implants", href: "#services" },
{ label: "Desserts", href: "#" }, { label: "Orthodontics", href: "#services" },
{ label: "Beverages", href: "#" } { label: "Restorative Care", href: "#services" }
] ]
}, },
{ {
title: "Restaurant", items: [ title: "Practice", items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "#about" },
{ label: "Hours", href: "#" }, { label: "Our Team", href: "#testimonials" },
{ label: "Location", href: "#" }, { label: "Technology", href: "#features" },
{ label: "Contact", href: "contact" } { label: "Contact Us", href: "#contact" }
] ]
}, },
{ {
title: "Connect", items: [ title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "Google Reviews", href: "https://google.com" },
{ label: "Reviews", href: "#" } { label: "Smile Gallery", href: "#" }
] ]
} }
]} ]}