33 Commits

Author SHA1 Message Date
a7d5aa6c60 Merge version_8 into main
Merge version_8 into main
2026-05-26 03:16:41 +00:00
2317d51741 Update src/app/contact/page.tsx 2026-05-26 03:16:38 +00:00
460659c835 Update src/app/about/page.tsx 2026-05-26 03:16:37 +00:00
af4b7a44d6 Merge version_8 into main
Merge version_8 into main
2026-05-26 03:16:16 +00:00
1392bc1ce3 Update src/app/contact/page.tsx 2026-05-26 03:16:13 +00:00
31afd8150f Update src/app/about/page.tsx 2026-05-26 03:16:13 +00:00
cfe90a8915 Merge version_7 into main
Merge version_7 into main
2026-05-26 03:03:34 +00:00
503e808f8b Update theme colors 2026-05-26 03:03:31 +00:00
e848fa2606 Merge version_6 into main
Merge version_6 into main
2026-05-26 03:03:30 +00:00
307dc4b527 Update theme colors 2026-05-26 03:03:26 +00:00
9bb01062c3 Merge version_5 into main
Merge version_5 into main
2026-05-26 03:03:24 +00:00
e2a7659fd4 Update theme colors 2026-05-26 03:03:21 +00:00
8076c243df Merge version_4 into main
Merge version_4 into main
2026-05-26 02:08:29 +00:00
f9ec8aae0b Add src/app/contact/page.tsx 2026-05-26 02:08:26 +00:00
4aeed3c0a7 Merge version_3 into main
Merge version_3 into main
2026-05-25 10:42:20 +00:00
b35bb1c575 Update src/app/about/page.tsx 2026-05-25 10:42:17 +00:00
7b225211e1 Merge version_3 into main
Merge version_3 into main
2026-05-25 10:41:49 +00:00
f8cf6f5362 Update src/app/about/page.tsx 2026-05-25 10:41:46 +00:00
e297037595 Switch to version 3: modified src/app/page.tsx 2026-05-25 10:33:17 +00:00
ae4cb39e68 Switch to version 3: added src/app/about/page.tsx 2026-05-25 10:33:16 +00:00
a357116767 Switch to version 2: remove src/app/about/page.tsx 2026-05-25 10:32:51 +00:00
a5bda25f98 Switch to version 2: modified src/app/page.tsx 2026-05-25 10:32:51 +00:00
5669b2c957 Merge version_3 into main
Merge version_3 into main
2026-05-25 10:31:50 +00:00
fe1e83b1ff Update src/app/about/page.tsx 2026-05-25 10:31:47 +00:00
8585544bf7 Merge version_3 into main
Merge version_3 into main
2026-05-25 09:43:31 +00:00
1676d8a1ab Update src/app/page.tsx 2026-05-25 09:43:28 +00:00
26951f0b14 Merge version_3 into main
Merge version_3 into main
2026-05-25 09:43:01 +00:00
0642cf9e51 Update src/app/page.tsx 2026-05-25 09:42:55 +00:00
a9ed0d9a49 Update src/app/about/page.tsx 2026-05-25 09:42:54 +00:00
5f56382168 Merge version_3 into main
Merge version_3 into main
2026-05-25 09:42:14 +00:00
99e21864a8 Update src/app/page.tsx 2026-05-25 09:42:11 +00:00
93b25636cf Add src/app/about/page.tsx 2026-05-25 09:42:11 +00:00
7e7dd7821c Merge version_2 into main
Merge version_2 into main
2026-05-25 09:40:32 +00:00
4 changed files with 351 additions and 17 deletions

171
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,171 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Phone, MessageSquare, Users, MapPin, Target, Zap } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Nidia Olivas Dental"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" }
]}
button={{ text: "Book Now", href: "tel:+19283873114" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="The Team Behind Your Perfect Smile"
description="For over 10 years we have been helping American and Canadian patients get the dental care they deserve — at prices that actually make sense."
tag="About Us"
tagIcon={Sparkles}
background={{ variant: "plain" }}
buttons={[
{ text: "Book Free Consultation", href: "/contact" },
{ text: "Our Services", href: "/services" }
]}
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/dentist-with-patient_23-2149164286.jpg?_wi=1" },
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/portrait-surgeons-standing-operation-room_1170-2215.jpg?_wi=1" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-using-digital-tablet_107420-73929.jpg?_wi=1" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/dentist-nurse-explaining-x-ray-scan-patient-with-toothache-stomatology-cabinet-team-specialists-doing-oral-care-consultation-treat-man-pain-with-denture-problem_482257-40449.jpg?_wi=1" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1675.jpg?_wi=1" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-dentist-with-patient_23-2149164286.jpg?_wi=1" }
]}
/>
</div>
<div id="our-story" data-section="our-story">
<FeatureCardSix
title="Why We Started Nidia Olivas Dental"
description="Our clinic was founded on the belief that everyone deserves high-quality, accessible dental care."
tag="Our Story"
tagIcon={Target}
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Mission", description: "To bridge the gap between expensive US dental care and high-quality, affordable treatments in Mexico.", imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-doctor-applauding-while-attending-healthcare-seminar_637285-9160.jpg" },
{ title: "Experience", description: "With a decade of specialized practice, our team has transformed thousands of smiles.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-doctor_23-2148480369.jpg?_wi=1" },
{ title: "Promise", description: "Genuine care, transparent pricing, and results that stand the test of time.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-holding-digital-tablet-while-talking-with-patient_107420-74007.jpg" }
]}
/>
</div>
<div id="why-los-algodones" data-section="why-los-algodones">
<FeatureCardSeven
title="Why Patients Choose Los Algodones"
description="The premier destination for dental care near the US border."
tag="Los Algodones"
tagIcon={MapPin}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Save Up To 70%", description: "Experience the same world-class quality at a fraction of the cost found in the United States.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-checking-mid-adult-man-with-ultraviolet-light-dental-clinic_662251-2565.jpg" },
{ title: "Minutes From The US Border", description: "Easy access and convenient for patients coming from Arizona, California, and beyond.", imageSrc: "http://img.b2bpic.net/free-photo/empty-hospital-reception-counter-hallway-waiting-room-seats-medical-examination-appointment-with-physician-registration-desk-with-waiting-area-help-patients-with-disease-diagnosis_482257-51632.jpg" },
{ title: "World-Class Quality", description: "Our facilities meet the highest standards of international dental care.", imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1675.jpg?_wi=2" }
]}
/>
</div>
<div id="stats" data-section="stats">
<MetricCardEleven
title="10 Years of Smiles"
description='"Every number behind our name represents a real patient who trusted us with their smile."'
tag="By The Numbers"
tagIcon={Zap}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "1", value: "3,000+", title: "Happy Patients", description: "Patients served since our founding.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-surprised-curly-haired-woman-keeps-mouth-widely-opened-reacts-awesome-surprise-has-overjoyed-expression-dressed-orange-knitted-sweater_273609-46781.jpg?_wi=1" },
{ id: "2", value: "10+ Years", title: "Experience", description: "Dedicated to your dental health.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-male-dentist-room-with-medical-equipment-background_613910-15260.jpg" },
{ id: "3", value: "5.0★", title: "Google Rating", description: "Patient trust and satisfaction.", imageSrc: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg" },
{ id: "4", value: "24hrs", title: "Always Available", description: "Ready when you need us.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cool-young-black-man-with-curly-hair-has-cheerful-expression_273609-8605.jpg?_wi=1" }
]}
/>
</div>
<div id="meet-the-team" data-section="meet-the-team">
<TeamCardSix
title="The People Behind Your Smile"
description="Meet our professional dental team dedicated to your care."
tag="Our Team"
tagIcon={Users}
gridVariant="asymmetric-60-wide-40-narrow"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
members={[
{ id: "1", name: "Dr. Nidia Olivas", role: "Lead Dentist", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-doctor_23-2148480369.jpg?_wi=2" },
{ id: "2", name: "Dr. Pablo Sarabia", role: "Specialist", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-doctor_23-2148480369.jpg?_wi=3" },
{ id: "3", name: "Jasmine Torres", role: "Dental Hygienist", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-using-digital-tablet_107420-73929.jpg?_wi=2" },
{ id: "4", name: "Eric Medina", role: "Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cool-young-black-man-with-curly-hair-has-cheerful-expression_273609-8605.jpg?_wi=2" },
{ id: "5", name: "Gema Ruiz", role: "Patient Care", imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-sofa-smiling_329181-1264.jpg" },
{ id: "6", name: "Adrian Flores", role: "Dental Assistant", imageSrc: "http://img.b2bpic.net/free-photo/portrait-surprised-curly-haired-woman-keeps-mouth-widely-opened-reacts-awesome-surprise-has-overjoyed-expression-dressed-orange-knitted-sweater_273609-46781.jpg?_wi=2" }
]}
/>
</div>
<div id="cta" data-section="cta">
<ContactSplitForm
title="Ready To Meet The Team In Person?"
description="Come visit us in Los Algodones and experience the difference that genuine care and world-class dentistry can make for your smile."
buttonText="Send Us a Message"
inputs={[{ name: "name", type: "text", placeholder: "Name" }, { name: "email", type: "email", placeholder: "Email" }]}
imageSrc="http://img.b2bpic.net/free-photo/dentist-showing-dental-jaw-female-patient-clinic_23-2147862036.jpg"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Nidia Olivas Dental"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "FAQ", href: "/faq" }] },
{ items: [{ label: "Facebook", href: "https://www.facebook.com/ddsnidiaolivasandpabelsarabia/?locale=es_LA" }, { label: "Instagram", href: "https://www.instagram.com" }, { label: "Tik Tok", href: "https://www.tiktok.com/es-419/" }] }
]}
/>
<p className="text-center py-4">© 2026 Nidia Olivas Dental. All rights reserved.</p>
</div>
<a href="https://wa.me/19283873114" className="fixed bottom-6 right-6 z-50 p-4 bg-green-500 text-white rounded-full shadow-lg">
<MessageSquare />
</a>
<a href="tel:+19283873114" className="fixed bottom-24 right-6 z-50 p-4 bg-blue-600 text-white rounded-full shadow-lg">
<Phone />
</a>
</ReactLenis>
</ThemeProvider>
);
}

151
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,151 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Phone, MessageSquare, MapPin, Clock } from 'lucide-react';
export default function ContactPage() {
const commonNavItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" }
];
const commonNavButton = { text: "Book Now", href: "tel:+19283873114" };
const commonFooterColumns = [
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "FAQ", href: "/faq" }] },
{ items: [{ label: "Facebook", href: "https://www.facebook.com/ddsnidiaolivasandpabelsarabia/?locale=es_LA" }, { label: "Instagram", href: "https://www.instagram.com" }, { label: "Tik Tok", href: "https://www.tiktok.com/es-419/" }] }
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Nidia Olivas Dental"
navItems={commonNavItems}
button={commonNavButton}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="We Are Ready When You Are"
description="Our bilingual team is available 24 hours a day. Call us, WhatsApp us, or visit us in Los Algodones — we are always here for you."
tag="Contact Us"
tagIcon={Sparkles}
background={{ variant: "plain" }}
buttons={[
{ text: "Call Now", href: "tel:+19283873114" },
{ text: "WhatsApp Us", href: "https://wa.me/19283873114" }
]}
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/dentist-with-patient_23-2149164286.jpg?_wi=2" },
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/portrait-surgeons-standing-operation-room_1170-2215.jpg?_wi=2" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-using-digital-tablet_107420-73929.jpg?_wi=3" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/dentist-nurse-explaining-x-ray-scan-patient-with-toothache-stomatology-cabinet-team-specialists-doing-oral-care-consultation-treat-man-pain-with-denture-problem_482257-40449.jpg?_wi=2" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1675.jpg?_wi=3" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-dentist-with-patient_23-2149164286.jpg?_wi=2" }
]}
/>
</div>
<div id="contact-info" data-section="contact-info">
<FeatureCardSix
title="How To Reach Us"
description="Multiple ways to contact us — choose whatever is most comfortable for you."
tag="Get In Touch"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Phone", description: "Call us anytime, day or night.", buttons: [{ text: "Call Now", href: "tel:+19283873114" }],
imageSrc: "http://img.b2bpic.net/free-photo/mobile-phone-white-background-phone-screen-white-space_118943-348.jpg" // Placeholder
},
{
title: "WhatsApp", description: "Send us a message anytime.", buttons: [{ text: "Message Us", href: "https://wa.me/19283873114" }],
imageSrc: "http://img.b2bpic.net/free-photo/person-typing-phone-with-whatsapp-open_23-2150035032.jpg" // Placeholder
},
{
title: "Location", description: "Come visit us in Los Algodones. C. Tercera 168, Vicente Guerrero, 21970 B.C.", buttons: [{ text: "Visit Us", href: "https://maps.app.goo.gl/ph7RVn2udUSTbhae8" }],
imageSrc: "http://img.b2bpic.net/free-photo/young-man-with-smartphone-using-navigation-app-city_23-2147879482.jpg" // Placeholder
},
{
title: "Hours", description: "We never close. Open 24 Hours — 7 Days a Week", buttons: [{ text: "Call Now", href: "tel:+19283873114" }],
imageSrc: "http://img.b2bpic.net/free-photo/clock-icon-button-set-white-background_134830-1014.jpg" // Placeholder
}
]}
/>
</div>
<div id="map-section" data-section="map-section">
<div className="container mx-auto px-4 py-16">
<h2 className="text-4xl md:text-5xl font-bold text-center mb-4">Find Us Here</h2>
<p className="text-center text-lg text-gray-600 mb-8">We are located in Los Algodones, Baja California just minutes from the Arizona border.</p>
<div className="relative aspect-video w-full max-w-4xl mx-auto rounded-lg overflow-hidden shadow-xl">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3409.809228564288!2d-114.7397960237748!3d32.70425318536838!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80d85908e27c1f19%3A0x6e788c1c4f5263a4!2sC.%20Tercera%20168%2C%20Vicente%20Guerrero%2C%2021970%20Vicente%20Guerrero%2C%20B.C.!5e0!3m2!1sen!2smx!4v1700000000000!5m2!1sen!2smx"
width="100%"
height="100%"
style={{ border: 0 }}
allowFullScreen={true}
loading="lazy"
referrerPolicy="no-referrer-when-downgrade"
title="Google Map of Nidia Olivas Dental location"
></iframe>
</div>
</div>
</div>
<div id="cta-section" data-section="cta-section">
<ContactCTA
title="Ready To Transform Your Smile?"
description="Contact our bilingual team today and discover why thousands of American and Canadian patients choose Nidia Olivas Dental in Los Algodones."
tag="Book Now"
buttons={[
{ text: "Call Now", href: "tel:+19283873114" },
{ text: "WhatsApp Us", href: "https://wa.me/19283873114" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Nidia Olivas Dental"
columns={commonFooterColumns}
/>
<p className="text-center py-4">© 2026 Nidia Olivas Dental. All rights reserved.</p>
</div>
<a href="https://wa.me/19283873114" className="fixed bottom-6 right-6 z-50 p-4 bg-green-500 text-white rounded-full shadow-lg">
<MessageSquare />
</a>
<a href="tel:+19283873114" className="fixed bottom-24 right-6 z-50 p-4 bg-blue-600 text-white rounded-full shadow-lg">
<Phone />
</a>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -13,7 +13,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Sparkles, Award, Beaker, Heart, HelpCircle, BookOpen, Phone, MessageSquare } from 'lucide-react';
import { Sparkles, Award, Phone, MessageSquare } from 'lucide-react';
export default function LandingPage() {
return (
@@ -34,11 +34,11 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
brandName="Nidia Olivas Dental"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Services", id: "products" },
{ name: "About", id: "ingredients" },
{ name: "Contact", id: "contact" },
{ name: "FAQ", id: "faq" }
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" }
]}
button={{ text: "Book Now", href: "tel:+19283873114" }}
/>
@@ -71,6 +71,7 @@ export default function LandingPage() {
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted By Thousands of Patients"
description="Our clinic has served thousands of patients over the past 10 years."
names={["⭐ 5.0 Google Rating", "3,000+ Happy Patients", "10+ Years of Experience", "Bilingual Team", "Open 24 Hours"]}
textboxLayout="default"
useInvertedBackground={false}
@@ -102,6 +103,8 @@ export default function LandingPage() {
title="Why Patients Choose Us"
description="Expert care, cutting-edge technology, and a warm bilingual team delivering results that change lives."
tag="Our Process"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Free Consultation", description: "We start with a full evaluation and X-rays at no cost. Our bilingual team explains every option clearly so you can make the best decision for your smile.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-holding-digital-tablet-while-talking-with-patient_107420-74007.jpg" },
{ title: "Expert Treatment", description: "Our dentists use the latest technology and highest-quality materials — the same as top US clinics — at a fraction of the price.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-male-dentist-room-with-medical-equipment-background_613910-15260.jpg" },
@@ -115,6 +118,8 @@ export default function LandingPage() {
title="Real Patients. Real Smiles."
description="Thousands of patients from the US and Canada trust Nidia Olivas Dental for their dental care every year."
tag="Patient Stories"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Sarah M. — Arizona", description: "", imageSrc: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg" },
{ title: "John D. — California", description: "", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cool-young-black-man-with-curly-hair-has-cheerful-expression_273609-8605.jpg" },
@@ -133,6 +138,8 @@ export default function LandingPage() {
title="The Numbers Behind Our Smiles"
description="Every number represents a patient who left our clinic happier than when they arrived."
tag="By The Numbers"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "1", value: "5.0★", title: "Google Star Rating", description: "Hundreds of five-star reviews from real patients across the US and Canada.", imageSrc: "http://img.b2bpic.net/free-photo/illustration-dental-care-application-digital-tablet_53876-125399.jpg" },
{ id: "2", value: "3,000+", title: "Happy Patients", description: "Over three thousand patients have trusted us with their smiles and keep coming back.", imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-doctor-applauding-while-attending-healthcare-seminar_637285-9160.jpg" }
@@ -146,6 +153,8 @@ export default function LandingPage() {
title="The Nidia Olivas Blog"
description="Expert tips on oral health, dental tourism, and how to get the most out of your visit to Los Algodones."
tag="Dental Tips"
textboxLayout="default"
useInvertedBackground={false}
blogs={[
{ id: "1", category: "Dental Tourism", title: "5 Reasons Why Los Algodones Is The Best Dental Destination", excerpt: "Discover why thousands of Americans cross the border every year for world-class dental care at unbeatable prices.", imageSrc: "http://img.b2bpic.net/free-photo/digital-composite-doctor-with-white-graph-with-flare-against-blurry-background-with-light-blue-overlay_1258-84253.jpg", authorName: "Dr. Nidia Olivas", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-male-doctor_23-2148480369.jpg", date: "May 2026" },
{ id: "2", category: "Oral Health", title: "How To Keep Your Teeth White After a Whitening Treatment", excerpt: "Simple daily habits that help you maintain your bright smile for months after your professional whitening session.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-checking-mid-adult-man-with-ultraviolet-light-dental-clinic_662251-2565.jpg", authorName: "Dr. Nidia Olivas", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-male-doctor_23-2148480369.jpg", date: "April 2026" },
@@ -160,6 +169,8 @@ export default function LandingPage() {
title="Frequently Asked Questions"
description="Everything you need to know before your first visit to Nidia Olivas Dental in Los Algodones."
tag="FAQ"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Is it safe to get dental work done in Los Algodones?", content: "Absolutely. Our clinic uses the same materials and technology as top US clinics. Dr. Nidia Olivas has over 10 years of experience treating thousands of American and Canadian patients." },
{ id: "2", title: "How much can I save compared to US prices?", content: "Most patients save between 50% and 70%. A dental implant that costs $3,000$4,000 in the US starts at $850 at our clinic — with the same quality." },
@@ -186,6 +197,7 @@ export default function LandingPage() {
textarea={{ name: "concerns", placeholder: "Tell us about your dental concerns or questions..." }}
buttonText="Send Message"
imageSrc="http://img.b2bpic.net/free-photo/serious-pensive-beautiful-young-woman-wearing-white-shirt-talking-mobile-phone-standing-co-working-space_74855-15196.jpg"
useInvertedBackground={false}
/>
</div>
@@ -193,7 +205,7 @@ export default function LandingPage() {
<FooterLogoEmphasis
logoText="Nidia Olivas Dental"
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "FAQ", href: "/faq" }] },
{ items: [{ label: "Facebook", href: "https://www.facebook.com/ddsnidiaolivasandpabelsarabia/?locale=es_LA" }, { label: "Instagram", href: "https://www.instagram.com" }, { label: "Tik Tok", href: "https://www.tiktok.com/es-419/" }] }
@@ -211,4 +223,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #000000;
--card: #0c0c0c;
--foreground: #ffffff;
--primary-cta: #106EFB;
--primary-cta-text: #ffffff;
--secondary-cta: #000000;
--secondary-cta-text: #ffffff;
--accent: #535353;
--background-accent: #106EFB;
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f8f5ffe6;
--primary-cta: #c89bff;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #f8f5ffe6;
--accent: #737373;
--background-accent: #737373;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);