Merge version_8 into main #12

Merged
bender merged 2 commits from version_8 into main 2026-05-26 03:16:17 +00:00
2 changed files with 13 additions and 12 deletions

View File

@@ -150,10 +150,10 @@ export default function AboutPage() {
<FooterLogoEmphasis
logoText="Nidia Olivas Dental"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "FAQ", href: "/faq" }] },
{ items: [{ label: "Instagram", href: "/" }, { label: "Facebook", href: "/" }] }
{ 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>
@@ -168,4 +168,4 @@ export default function AboutPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -14,15 +14,16 @@ export default function ContactPage() {
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
{ 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: "TikTok", href: "https://www.tiktok.com/es-419/" }, { label: "YouTube", href: "https://www.youtube.com/" }] },
{ items: [{ label: "Facebook", href: "https://www.facebook.com/ddsnidiaolivasandpabelsarabia/?locale=es_LA" }, { label: "Instagram", href: "https://www.instagram.com" }] }
{ 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 (
@@ -78,19 +79,19 @@ export default function ContactPage() {
useInvertedBackground={false}
features={[
{
title: "Phone", description: "Call us anytime, day or night.", buttons: [{ text: "+1 928-387-3114", href: "tel:+19283873114" }],
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: "+1 928-387-3114", href: "https://wa.me/19283873114" }],
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: "C. Tercera 168, Vicente Guerrero, 21970 Vicente Guerrero, B.C.", buttons: [{ text: "Visit Us", href: "https://maps.app.goo.gl/ph7RVn2udUSTbhae8" }],
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: "Open 24 Hours — 7 Days a Week", buttons: [{ text: "Call Now", href: "tel:+19283873114" }],
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
}
]}
@@ -147,4 +148,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}