Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -67,10 +67,10 @@ export default function GeneralDentistryPage() {
|
||||
title="Maintaining Your Oral Health"
|
||||
description="Our general dentistry services are designed to keep your teeth and gums healthy for a lifetime, preventing common issues before they become serious."
|
||||
features={[
|
||||
{ title: "Routine Check-ups", description: "Thorough examinations to detect and prevent dental issues early.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg", imageAlt: "Dental check-up" },
|
||||
{ title: "Professional Cleanings", description: "Remove plaque and tartar buildup for a fresh, healthy smile.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg", imageAlt: "Professional teeth cleaning" },
|
||||
{ title: "Fillings & Restorations", description: "High-quality, durable fillings to restore damaged teeth.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg", imageAlt: "Dental fillings" },
|
||||
{ title: "Preventative Care", description: "Fluoride treatments and sealants to protect against cavities.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-female-patients-tooth-x-ray_107420-73923.jpg", imageAlt: "Preventative dental care" }
|
||||
{ title: "Routine Check-ups", description: "Thorough examinations to detect and prevent dental issues early.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg?_wi=2", imageAlt: "Dental check-up" },
|
||||
{ title: "Professional Cleanings", description: "Remove plaque and tartar buildup for a fresh, healthy smile.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg?_wi=2", imageAlt: "Professional teeth cleaning" },
|
||||
{ title: "Fillings & Restorations", description: "High-quality, durable fillings to restore damaged teeth.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg?_wi=2", imageAlt: "Dental fillings" },
|
||||
{ title: "Preventative Care", description: "Fluoride treatments and sealants to protect against cavities.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-female-patients-tooth-x-ray_107420-73923.jpg?_wi=2", imageAlt: "Preventative dental care" }
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -83,9 +83,9 @@ export default function ImplantsPage() {
|
||||
title="Why Choose Dental Implants?"
|
||||
description="Discover the long-term benefits of dental implants, including durability, comfort, and improved oral health."
|
||||
features={[
|
||||
{ title: "Natural Look & Feel", description: "Implants are designed to blend seamlessly with your natural teeth.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg", imageAlt: "Natural-looking dental implant" },
|
||||
{ title: "Durability & Longevity", description: "With proper care, dental implants can last a lifetime.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg", imageAlt: "Durable dental implant" },
|
||||
{ title: "Preserves Bone Health", description: "Implants stimulate the jawbone, preventing bone loss that occurs with missing teeth.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg", imageAlt: "Bone health preservation" }
|
||||
{ title: "Natural Look & Feel", description: "Implants are designed to blend seamlessly with your natural teeth.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg?_wi=3", imageAlt: "Natural-looking dental implant" },
|
||||
{ title: "Durability & Longevity", description: "With proper care, dental implants can last a lifetime.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg?_wi=3", imageAlt: "Durable dental implant" },
|
||||
{ title: "Preserves Bone Health", description: "Implants stimulate the jawbone, preventing bone loss that occurs with missing teeth.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg?_wi=3", imageAlt: "Bone health preservation" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -1,26 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
title: "Family Dental Center Sharjah - Comprehensive Dental Care for All Ages", description: "Leading dental clinic in Sharjah offering expert general dentistry, implants, root canals, cosmetic, and family care. Book your appointment today for a healthy, beautiful smile.", keywords: "dental clinic Sharjah, family dentistry, dental implants, root canals, cosmetic dentistry, teeth whitening, pediatric dentist Sharjah, best dentist Sharjah", metadataBase: new URL("https://www.familydentalcentersharjah.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.familydentalcentersharjah.com"},
|
||||
openGraph: {
|
||||
title: "Family Dental Center Sharjah - Expert Dental Care", description: "Leading dental clinic in Sharjah offering expert general dentistry, implants, root canals, cosmetic, and family care.", url: "https://www.familydentalcentersharjah.com", siteName: "Family Dental Center", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/team-happy-doctors-standing-with-arms-crossed-mri-scanner-hospital-looking-camera_637285-389.jpg", alt: "Dentist examining patient in a modern clinic"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Family Dental Center Sharjah - Expert Dental Care", description: "Leading dental clinic in Sharjah offering expert general dentistry, implants, root canals, cosmetic, and family care.", images: ["http://img.b2bpic.net/free-photo/team-happy-doctors-standing-with-arms-crossed-mri-scanner-hospital-looking-camera_637285-389.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -32,7 +38,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
className={`${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -45,4 +51,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -90,10 +90,10 @@ export default function HomePage() {
|
||||
title="Our Comprehensive Dental Services"
|
||||
description="From routine check-ups to advanced cosmetic procedures, we offer a full spectrum of dental care designed to meet every need."
|
||||
features={[
|
||||
{ title: "General Dentistry", description: "Preventative care, fillings, root canals, and regular check-ups to maintain optimal oral health.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg", imageAlt: "Dental check-up illustration" },
|
||||
{ title: "Dental Implants", description: "Permanent and natural-looking solutions for missing teeth, restoring function and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg", imageAlt: "Dental implant illustration" },
|
||||
{ title: "Cosmetic Treatments", description: "Transform your smile with professional whitening, veneers, and complete smile makeovers.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-female-patients-tooth-x-ray_107420-73923.jpg", imageAlt: "Cosmetic teeth whitening illustration" },
|
||||
{ title: "Family-Friendly Care", description: "Gentle and specialized dental care for patients of all ages, ensuring a positive experience for children and adults.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg", imageAlt: "Family dental care illustration" }
|
||||
{ title: "General Dentistry", description: "Preventative care, fillings, root canals, and regular check-ups to maintain optimal oral health.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg?_wi=1", imageAlt: "Dental check-up illustration" },
|
||||
{ title: "Dental Implants", description: "Permanent and natural-looking solutions for missing teeth, restoring function and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg?_wi=1", imageAlt: "Dental implant illustration" },
|
||||
{ title: "Cosmetic Treatments", description: "Transform your smile with professional whitening, veneers, and complete smile makeovers.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-female-patients-tooth-x-ray_107420-73923.jpg?_wi=1", imageAlt: "Cosmetic teeth whitening illustration" },
|
||||
{ title: "Family-Friendly Care", description: "Gentle and specialized dental care for patients of all ages, ensuring a positive experience for children and adults.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg?_wi=1", imageAlt: "Family dental care illustration" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user