Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-12 23:02:12 +00:00
6 changed files with 65 additions and 33 deletions

View File

@@ -77,7 +77,7 @@ export default function AboutPage() {
background={{
variant: "radial-gradient",
}}
imageSrc="http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg"
imageSrc="http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg?_wi=2"
imageAlt="Dr. Sarah Mitchell"
mediaAnimation="opacity"
frameStyle="card"
@@ -107,7 +107,7 @@ export default function AboutPage() {
},
]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg"
imageSrc="http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg?_wi=3"
imageAlt="Our dental practice philosophy"
mediaAnimation="blur-reveal"
metricsAnimation="slide-up"
@@ -129,7 +129,7 @@ export default function AboutPage() {
id: "dr-sarah",
name: "Dr. Sarah Mitchell",
role: "DDS, Dentist & Founder",
imageSrc: "http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg?_wi=4",
imageAlt: "Dr. Sarah Mitchell",
},
{
@@ -155,7 +155,7 @@ export default function AboutPage() {
<div id="about-footer" data-section="about-footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=4"
imageAlt="Gentle Dental office"
logoText="Gentle Dental"
copyrightText="© 2024 Gentle Dental. All rights reserved. | Brooklyn, Michigan"

View File

@@ -90,7 +90,7 @@ export default function ContactPage() {
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=6"
imageAlt="Gentle Dental office"
mediaAnimation="opacity"
frameStyle="card"
@@ -131,7 +131,7 @@ export default function ContactPage() {
{ value: "24/7", title: "Emergency Care" }
]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=7"
imageAlt="Gentle Dental Brooklyn Michigan location"
mediaAnimation="blur-reveal"
metricsAnimation="slide-up"
@@ -142,7 +142,7 @@ export default function ContactPage() {
{/* Footer */}
<div id="contact-footer" data-section="contact-footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=8"
imageAlt="Gentle Dental office"
logoText="Gentle Dental"
copyrightText="© 2024 Gentle Dental. All rights reserved. | Brooklyn, Michigan"

View File

@@ -6,18 +6,48 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Gentle Dental - Contact & Schedule Appointment in Brooklyn, MI",
description: "Contact Gentle Dental to schedule your appointment in Brooklyn, Michigan. Call (517) 592-8422 or book online. We offer emergency dental care.",
keywords: "contact dentist Brooklyn MI, schedule dental appointment, Gentle Dental phone, dental emergency",
metadataBase: new URL("https://gentledental.local"),
openGraph: {
title: "Contact Gentle Dental - Schedule Appointment",
description: "Get in touch with Gentle Dental in Brooklyn, Michigan. Schedule your appointment today.",
siteName: "Gentle Dental",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg",
alt: "Gentle Dental office Brooklyn Michigan"
}
]
},
twitter: {
card: "summary_large_image",
title: "Contact Gentle Dental - Brooklyn MI Dentist",
description: "Schedule your dental appointment with Gentle Dental in Brooklyn, Michigan",
images: [
"http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
children,
}: Readonly<{
@@ -26,7 +56,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -38,4 +70,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -76,7 +76,7 @@ export default function HomePage() {
background={{
variant: "radial-gradient",
}}
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=1"
imageAlt="Gentle Dental modern office interior"
mediaAnimation="opacity"
frameStyle="card"
@@ -106,7 +106,7 @@ export default function HomePage() {
},
]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg"
imageSrc="http://img.b2bpic.net/free-photo/doctor-ophthalmologist-s-office_23-2150917668.jpg?_wi=1"
imageAlt="Dr. Sarah Mitchell, Gentle Dental dentist"
mediaAnimation="blur-reveal"
metricsAnimation="slide-up"
@@ -125,7 +125,7 @@ export default function HomePage() {
{
title: "Preventive Dentistry",
description: "Regular cleanings, exams, and fluoride treatments to keep your teeth healthy and prevent problems before they start.",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg?_wi=1",
imageAlt: "Professional teeth cleaning",
buttonIcon: Calendar,
buttonHref: "/contact",
@@ -133,7 +133,7 @@ export default function HomePage() {
{
title: "Cosmetic Dentistry",
description: "Professional teeth whitening and smile enhancement to boost your confidence and show off your best smile.",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg?_wi=1",
imageAlt: "Teeth whitening treatment",
buttonIcon: Sparkles,
buttonHref: "/contact",
@@ -141,7 +141,7 @@ export default function HomePage() {
{
title: "Restorative Dentistry",
description: "Fillings, crowns, and bridges to restore damaged teeth and maintain proper dental function and appearance.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg?_wi=1",
imageAlt: "Dental crown restoration",
buttonIcon: Shield,
buttonHref: "/contact",
@@ -264,7 +264,7 @@ export default function HomePage() {
<div id="footer-home" data-section="footer-home">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=2"
imageAlt="Gentle Dental office"
logoText="Gentle Dental"
copyrightText="© 2024 Gentle Dental. All rights reserved. | Brooklyn, Michigan"

View File

@@ -172,7 +172,7 @@ export default function ReviewsPage() {
<div id="reviews-footer" data-section="reviews-footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=5"
imageAlt="Gentle Dental office"
logoText="Gentle Dental"
copyrightText="© 2024 Gentle Dental. All rights reserved. | Brooklyn, Michigan"

View File

@@ -60,7 +60,7 @@ export default function ServicesPage() {
background={{
variant: "radial-gradient",
}}
imageSrc="http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg"
imageSrc="http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg?_wi=2"
imageAlt="Professional dental services"
mediaAnimation="opacity"
frameStyle="card"
@@ -79,7 +79,7 @@ export default function ServicesPage() {
{
title: "Dental Cleanings & Exams",
description: "Professional cleanings remove tartar and plaque while our dentist performs a thorough exam to catch problems early.",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg?_wi=3",
imageAlt: "Professional teeth cleaning",
buttonIcon: Calendar,
buttonHref: "/contact",
@@ -87,7 +87,7 @@ export default function ServicesPage() {
{
title: "Fluoride Treatments",
description: "Strengthen your teeth with professional fluoride to prevent cavities and protect enamel.",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg?_wi=4",
imageAlt: "Fluoride treatment",
buttonIcon: Sparkles,
buttonHref: "/contact",
@@ -95,7 +95,7 @@ export default function ServicesPage() {
{
title: "Digital X-Rays",
description: "Advanced imaging technology for accurate diagnosis with minimal radiation exposure.",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-treats-childs-tooth-using-rubber-dam-closeup-tooth-treatment_169016-66856.jpg?_wi=5",
imageAlt: "Digital dental X-rays",
buttonIcon: Shield,
buttonHref: "/contact",
@@ -118,7 +118,7 @@ export default function ServicesPage() {
{
title: "Professional Teeth Whitening",
description: "Brighten your smile with our professional whitening system for results that last and shine.",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg?_wi=2",
imageAlt: "Professional teeth whitening",
buttonIcon: Sparkles,
buttonHref: "/contact",
@@ -126,7 +126,7 @@ export default function ServicesPage() {
{
title: "Dental Veneers",
description: "Custom veneers to correct discoloration, chips, gaps, and shape imperfections for a perfect smile.",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg?_wi=3",
imageAlt: "Dental veneers",
buttonIcon: Star,
buttonHref: "/contact",
@@ -134,7 +134,7 @@ export default function ServicesPage() {
{
title: "Smile Makeover",
description: "Comprehensive cosmetic planning to transform your entire smile and achieve your dream appearance.",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133075.jpg?_wi=4",
imageAlt: "Smile makeover consultation",
buttonIcon: Sparkles,
buttonHref: "/contact",
@@ -157,7 +157,7 @@ export default function ServicesPage() {
{
title: "Fillings",
description: "Tooth-colored composite fillings that seamlessly repair cavities while maintaining natural appearance.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg?_wi=2",
imageAlt: "Dental filling procedure",
buttonIcon: Shield,
buttonHref: "/contact",
@@ -165,7 +165,7 @@ export default function ServicesPage() {
{
title: "Crowns & Bridges",
description: "Custom-made crowns and bridges to restore function and appearance of damaged or missing teeth.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg?_wi=3",
imageAlt: "Dental crown restoration",
buttonIcon: Award,
buttonHref: "/contact",
@@ -173,7 +173,7 @@ export default function ServicesPage() {
{
title: "Root Canal Therapy",
description: "Gentle endodontic treatment to save infected teeth and eliminate pain while preserving your natural tooth.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-cups_23-2147775840.jpg?_wi=4",
imageAlt: "Root canal treatment",
buttonIcon: Zap,
buttonHref: "/contact",
@@ -209,7 +209,7 @@ export default function ServicesPage() {
<div id="services-footer" data-section="services-footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg"
imageSrc="http://img.b2bpic.net/free-photo/middle-age-lady-smiling-camera-sitting-down-modern-laboratory-middle-age-doctor-hospital-laboratory_482257-34689.jpg?_wi=3"
imageAlt="Gentle Dental office"
logoText="Gentle Dental"
copyrightText="© 2024 Gentle Dental. All rights reserved. | Brooklyn, Michigan"