Merge version_2 into main #2
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Miami Dental Clinic | Premium Dental Care Open 24 Hours", description: "Premium dental clinic in Miami offering general, cosmetic, and emergency dental care. Experienced team, 24-hour service, wheelchair accessible. Book your appointment today.", keywords: "Miami dental clinic, dentist in Miami, dental care Miami, 24 hour dentist, emergency dental care, cosmetic dentistry Miami", metadataBase: new URL("https://www.miamidentalclinic.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.miamidentalclinic.com"},
|
||||
openGraph: {
|
||||
title: "Miami Dental Clinic | Premium Dental Care", description: "Exceptional dental care in Miami since 2014. Modern facilities, experienced team, 24-hour emergency service.", url: "https://www.miamidentalclinic.com", siteName: "Miami Dental Clinic", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/professional-dentist-tools-chair-dental-office_1204-394.jpg", alt: "Miami Dental Clinic - Professional dental care"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Miami Dental Clinic | Premium Dental Care", description: "Exceptional dental care in Miami since 2014. 24-hour emergency service available.", images: ["http://img.b2bpic.net/free-photo/professional-dentist-tools-chair-dental-office_1204-394.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Miami Dental Clinic - Premium Dental Care", description: "Professional dental care in Miami, Florida. Providing cosmetic, general, and emergency dentistry services."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,11 +56,14 @@ export default function LandingPage() {
|
||||
imageAlt="Professional dental clinic interior with modern equipment"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-specialist-physician-assistant-standing-hospital-ward-medical-consultation-background-doctor-consulting-sick-patient-discussing-healthcare-treatment-medicine-services_482257-27971.jpg", alt: "Patient testimonial"},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-specialist-physician-assistant-standing-hospital-ward-medical-consultation-background-doctor-consulting-sick-patient-discussing-healthcare-treatment-medicine-services_482257-27971.jpg", alt: "Patient testimonial"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-african-american-doctor-nursing-home_637285-11403.jpg", alt: "Patient testimonial"},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-african-american-doctor-nursing-home_637285-11403.jpg", alt: "Patient testimonial"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-mature-woman-talking-her-doctor-medical-clinic_637285-9073.jpg", alt: "Patient testimonial"},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-mature-woman-talking-her-doctor-medical-clinic_637285-9073.jpg", alt: "Patient testimonial"
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by 100+ happy patients • 4.1★ Rating"
|
||||
/>
|
||||
@@ -74,7 +77,10 @@ export default function LandingPage() {
|
||||
tagIcon={Heart}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentistry-team-office_1303-9359.jpg"
|
||||
imageAlt="Miami Dental Clinic team of experienced dental professionals"
|
||||
buttons={[{ text: "Schedule Your Visit", href: "#appointment" }]}
|
||||
buttons={[
|
||||
{ text: "Schedule Your Visit", href: "#appointment" },
|
||||
{ text: "Learn About Our Team", href: "#team" },
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -88,7 +94,8 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "General Dentistry", description: "Routine dental checkups, cleanings, and preventive care to keep your teeth and gums healthy.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-patient-opening-her-mouth-doctor-look-her-throat-otolaryngologist-examines-sore-throat-patient_657921-196.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-patient-opening-her-mouth-doctor-look-her-throat-otolaryngologist-examines-sore-throat-patient_657921-196.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: CheckCircle, text: "Professional cleanings" },
|
||||
{ icon: CheckCircle, text: "Cavity prevention" },
|
||||
@@ -98,7 +105,8 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "2", title: "Cosmetic Dentistry", description: "Enhance your smile with professional whitening and aesthetic dental treatments designed for beautiful results.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-3962.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-3962.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: CheckCircle, text: "Teeth whitening" },
|
||||
{ icon: CheckCircle, text: "Smile design" },
|
||||
@@ -108,7 +116,8 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "3", title: "Restorative Dentistry", description: "Restore damaged teeth with modern dental solutions designed for long-lasting results and natural appearance.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19455.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19455.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: CheckCircle, text: "Dental implants" },
|
||||
{ icon: CheckCircle, text: "Crowns & bridges" },
|
||||
@@ -118,7 +127,8 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "4", title: "Emergency Dental Care", description: "Immediate dental care for tooth pain, injuries, and urgent dental issues. Available 24 hours a day.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tooth-pain-dentistry-beautiful-young-woman-suffering-from-terrible-strong-teeth-pain-touching-cheek-with-hand-female-feeling-painful-toothache-dental-care-health-concept-high-resolution_657921-423.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tooth-pain-dentistry-beautiful-young-woman-suffering-from-terrible-strong-teeth-pain-touching-cheek-with-hand-female-feeling-painful-toothache-dental-care-health-concept-high-resolution_657921-423.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: CheckCircle, text: "24-hour availability" },
|
||||
{ icon: CheckCircle, text: "Rapid response" },
|
||||
@@ -160,16 +170,20 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", role: "Local Patient", company: "Miami Community", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-specialist-physician-assistant-standing-hospital-ward-medical-consultation-background-doctor-consulting-sick-patient-discussing-healthcare-treatment-medicine-services_482257-27971.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-specialist-physician-assistant-standing-hospital-ward-medical-consultation-background-doctor-consulting-sick-patient-discussing-healthcare-treatment-medicine-services_482257-27971.jpg"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", role: "Business Owner", company: "Downtown Miami", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-african-american-doctor-nursing-home_637285-11403.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-african-american-doctor-nursing-home_637285-11403.jpg"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez", role: "Healthcare Professional", company: "Miami Clinic", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-woman-talking-her-doctor-medical-clinic_637285-9073.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-woman-talking-her-doctor-medical-clinic_637285-9073.jpg"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Kim", role: "Local Resident", company: "Wynwood Area", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168431.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168431.jpg"
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "100+", label: "Happy Patients" },
|
||||
@@ -190,15 +204,20 @@ export default function LandingPage() {
|
||||
ctaIcon={Calendar}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are your operating hours?", content: "Miami Dental Clinic is open 24 hours a day, 7 days a week. We are available for emergencies and routine appointments at any time."},
|
||||
id: "1", title: "What are your operating hours?", content: "Miami Dental Clinic is open 24 hours a day, 7 days a week. We are available for emergencies and routine appointments at any time."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What should I bring to my appointment?", content: "Please bring a valid photo ID, insurance card (if applicable), and any relevant dental records from previous dentists."},
|
||||
id: "2", title: "What should I bring to my appointment?", content: "Please bring a valid photo ID, insurance card (if applicable), and any relevant dental records from previous dentists."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you accept insurance?", content: "Yes, we accept most major dental insurance plans. We also accept credit cards and debit cards for your convenience."},
|
||||
id: "3", title: "Do you accept insurance?", content: "Yes, we accept most major dental insurance plans. We also accept credit cards and debit cards for your convenience."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What payment methods do you accept?", content: "We accept credit cards, debit cards, and NFC mobile payments. Flexible payment plans are available for major procedures."},
|
||||
id: "4", title: "What payment methods do you accept?", content: "We accept credit cards, debit cards, and NFC mobile payments. Flexible payment plans are available for major procedures."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Are you wheelchair accessible?", content: "Yes, our clinic features a wheelchair-accessible entrance and parking. Our facility is fully compliant with accessibility standards."},
|
||||
id: "5", title: "Are you wheelchair accessible?", content: "Yes, our clinic features a wheelchair-accessible entrance and parking. Our facility is fully compliant with accessibility standards."
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
@@ -213,11 +232,14 @@ export default function LandingPage() {
|
||||
tagIcon={MapPin}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Miami Dental Clinic Address", content: "<strong>201 Northwest Dr</strong><br/>Miami, Florida 33126<br/>United States<br/><br/>Phone: +1 239-499-6242<br/>Hours: Open 24 Hours"},
|
||||
id: "1", title: "Miami Dental Clinic Address", content: "<strong>201 Northwest Dr</strong><br/>Miami, Florida 33126<br/>United States<br/><br/>Phone: +1 239-499-6242<br/>Hours: Open 24 Hours"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Amenities & Accessibility", content: "✓ Wheelchair-accessible entrance<br/>✓ Wheelchair-accessible parking<br/>✓ Restroom available<br/>✓ Credit & debit card accepted<br/>✓ NFC mobile payments supported<br/>✓ 24-hour emergency care<br/>✓ Modern sterilization equipment"},
|
||||
id: "2", title: "Amenities & Accessibility", content: "✓ Wheelchair-accessible entrance<br/>✓ Wheelchair-accessible parking<br/>✓ Restroom available<br/>✓ Credit & debit card accepted<br/>✓ NFC mobile payments supported<br/>✓ 24-hour emergency care<br/>✓ Modern sterilization equipment"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Directions & Parking", content: "Our clinic is conveniently located in Northwest Miami with dedicated parking. We are easily accessible from major roads and highways. Visit us today or call ahead to schedule your appointment."},
|
||||
id: "3", title: "Directions & Parking", content: "Our clinic is conveniently located in Northwest Miami with dedicated parking. We are easily accessible from major roads and highways. Visit us today or call ahead to schedule your appointment."
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user