Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -69,7 +69,7 @@ export default function AboutPage() {
|
||||
tag="About Our Clinic"
|
||||
title="Expert Dental Care You Can Trust"
|
||||
description="At Raut's Dental Clinic, we combine 15+ years of expertise with the latest 3D scanning technology to provide pain-free, affordable dental solutions. Our team is dedicated to creating healthy, beautiful smiles for the entire family. We maintain the highest hygiene standards and treat every patient with compassion and professionalism."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg?_wi=2"
|
||||
imageAlt="Raut's Dental Clinic modern interior"
|
||||
buttons={[
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function AboutPage() {
|
||||
"Custom treatment plans for all ages",
|
||||
"Affordable orthodontic solutions",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dental-whitening-trays-box-it_633478-106.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dental-whitening-trays-box-it_633478-106.jpg?_wi=2",
|
||||
imageAlt: "Invisalign clear aligners display",
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@ export default function AboutPage() {
|
||||
"Modern equipment for precise treatment",
|
||||
"Emergency dental care available",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-male-patient-having-dental-checkup-clinic_1098-20353.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-male-patient-having-dental-checkup-clinic_1098-20353.jpg?_wi=2",
|
||||
imageAlt: "Root canal treatment procedure",
|
||||
},
|
||||
{
|
||||
@@ -119,7 +119,7 @@ export default function AboutPage() {
|
||||
"Expert post-op care and guidance",
|
||||
"Quick recovery with proper aftercare",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dental-woman-nurse-applying-anesthesia-with-cotton-swab-before-stomatological-procedure-orthodontic-office-medical-team-discussing-treatment-against-caries-infection-dentistry-examination_482257-40994.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dental-woman-nurse-applying-anesthesia-with-cotton-swab-before-stomatological-procedure-orthodontic-office-medical-team-discussing-treatment-against-caries-infection-dentistry-examination_482257-40994.jpg?_wi=2",
|
||||
imageAlt: "Wisdom tooth extraction service",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,29 +1,67 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Best Dentist in Virar | Root Canal & Invisalign | Raut's Dental Clinic",
|
||||
description: "Award-winning dental clinic in Virar with 5.0 rating. Painless root canal, Invisalign, implants & emergency dental care. Book online today.",
|
||||
keywords: "dentist Virar, root canal treatment Virar, Invisalign dentist Virar, wisdom tooth removal, dental implants, dental clinic Virar East",
|
||||
metadataBase: new URL("https://rautdentalclinic.com"),
|
||||
alternates: {
|
||||
canonical: "https://rautdentalclinic.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Raut's Dental Clinic - Expert Dental Care in Virar",
|
||||
description: "Transform your smile with advanced pain-free dental treatment. 5.0-star rated clinic. Emergency services available.",
|
||||
url: "https://rautdentalclinic.com",
|
||||
siteName: "Raut's Dental Clinic",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/female-doctor-standing-holding-box_107420-73955.jpg",
|
||||
alt: "Raut's Dental Clinic - Modern Dental Practice",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Raut's Dental Clinic | Advanced Dental Treatment Virar",
|
||||
description: "Expert dental care with 5.0-star rating. Root canal, Invisalign, implants & emergency services.",
|
||||
images: ["http://img.b2bpic.net/free-photo/female-doctor-standing-holding-box_107420-73955.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +70,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +84,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -76,7 +76,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
title="Expert Dental Care You Can Trust"
|
||||
description="At Raut's Dental Clinic, we combine 15+ years of expertise with the latest 3D scanning technology to provide pain-free, affordable dental solutions. Our team is dedicated to creating healthy, beautiful smiles for the entire family. We maintain the highest hygiene standards and treat every patient with compassion and professionalism."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg?_wi=1"
|
||||
imageAlt="Raut's Dental Clinic modern interior"
|
||||
buttons={[
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
role: "Marketing Executive",
|
||||
company: "Mumbai Tech Solutions",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-pink-background_179666-14221.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-pink-background_179666-14221.jpg?_wi=1",
|
||||
imageAlt: "Priya Sharma",
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@ export default function HomePage() {
|
||||
role: "Business Owner",
|
||||
company: "Virar Electronics Store",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/executive-blue-suit-arms-crossed_1139-200.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/executive-blue-suit-arms-crossed_1139-200.jpg?_wi=1",
|
||||
imageAlt: "Raj Patel",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function HomePage() {
|
||||
role: "School Teacher",
|
||||
company: "Virar Public School",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-glasses-library_23-2148680197.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-glasses-library_23-2148680197.jpg?_wi=1",
|
||||
imageAlt: "Anjali Mehta",
|
||||
},
|
||||
{
|
||||
@@ -182,7 +182,7 @@ export default function HomePage() {
|
||||
role: "Software Engineer",
|
||||
company: "Tech Startup",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-department-team-leader-researching-marketing-ideas-while-analyzing-company-expenses-report-startup-project-manager-developing-budget-growth-solutions-while-brainstorming-promoting-strategy_482257-38904.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-department-team-leader-researching-marketing-ideas-while-analyzing-company-expenses-report-startup-project-manager-developing-budget-growth-solutions-while-brainstorming-promoting-strategy_482257-38904.jpg?_wi=1",
|
||||
imageAlt: "Deepak Kumar",
|
||||
},
|
||||
{
|
||||
@@ -191,7 +191,7 @@ export default function HomePage() {
|
||||
role: "Housewife & Parent",
|
||||
company: "Virar Family",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-ethnic-young-woman-shirt_23-2148143231.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-ethnic-young-woman-shirt_23-2148143231.jpg?_wi=1",
|
||||
imageAlt: "Neha Gupta",
|
||||
},
|
||||
{
|
||||
@@ -200,7 +200,7 @@ export default function HomePage() {
|
||||
role: "Construction Manager",
|
||||
company: "Virar Construction",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-worker-construction-wearing-protection-gear_23-2148784062.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-worker-construction-wearing-protection-gear_23-2148784062.jpg?_wi=1",
|
||||
imageAlt: "Arjun Singh",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -55,7 +55,7 @@ export default function ServicesPage() {
|
||||
"Custom treatment plans for all ages",
|
||||
"Affordable orthodontic solutions",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dental-whitening-trays-box-it_633478-106.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dental-whitening-trays-box-it_633478-106.jpg?_wi=1",
|
||||
imageAlt: "Invisalign clear aligners display",
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@ export default function ServicesPage() {
|
||||
"Modern equipment for precise treatment",
|
||||
"Emergency dental care available",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-male-patient-having-dental-checkup-clinic_1098-20353.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-male-patient-having-dental-checkup-clinic_1098-20353.jpg?_wi=1",
|
||||
imageAlt: "Root canal treatment procedure",
|
||||
},
|
||||
{
|
||||
@@ -77,7 +77,7 @@ export default function ServicesPage() {
|
||||
"Expert post-op care and guidance",
|
||||
"Quick recovery with proper aftercare",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dental-woman-nurse-applying-anesthesia-with-cotton-swab-before-stomatological-procedure-orthodontic-office-medical-team-discussing-treatment-against-caries-infection-dentistry-examination_482257-40994.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dental-woman-nurse-applying-anesthesia-with-cotton-swab-before-stomatological-procedure-orthodontic-office-medical-team-discussing-treatment-against-caries-infection-dentistry-examination_482257-40994.jpg?_wi=1",
|
||||
imageAlt: "Wisdom tooth extraction service",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -64,7 +64,7 @@ export default function TestimonialsPage() {
|
||||
role: "Marketing Executive",
|
||||
company: "Mumbai Tech Solutions",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-pink-background_179666-14221.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-pink-background_179666-14221.jpg?_wi=2",
|
||||
imageAlt: "Priya Sharma - Patient testimonial",
|
||||
},
|
||||
{
|
||||
@@ -73,7 +73,7 @@ export default function TestimonialsPage() {
|
||||
role: "Business Owner",
|
||||
company: "Virar Electronics Store",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/executive-blue-suit-arms-crossed_1139-200.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/executive-blue-suit-arms-crossed_1139-200.jpg?_wi=2",
|
||||
imageAlt: "Raj Patel - Patient testimonial",
|
||||
},
|
||||
{
|
||||
@@ -82,7 +82,7 @@ export default function TestimonialsPage() {
|
||||
role: "School Teacher",
|
||||
company: "Virar Public School",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-glasses-library_23-2148680197.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-glasses-library_23-2148680197.jpg?_wi=2",
|
||||
imageAlt: "Anjali Mehta - Patient testimonial",
|
||||
},
|
||||
{
|
||||
@@ -91,7 +91,7 @@ export default function TestimonialsPage() {
|
||||
role: "Software Engineer",
|
||||
company: "Tech Startup",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-department-team-leader-researching-marketing-ideas-while-analyzing-company-expenses-report-startup-project-manager-developing-budget-growth-solutions-while-brainstorming-promoting-strategy_482257-38904.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-department-team-leader-researching-marketing-ideas-while-analyzing-company-expenses-report-startup-project-manager-developing-budget-growth-solutions-while-brainstorming-promoting-strategy_482257-38904.jpg?_wi=2",
|
||||
imageAlt: "Deepak Kumar - Patient testimonial",
|
||||
},
|
||||
{
|
||||
@@ -100,7 +100,7 @@ export default function TestimonialsPage() {
|
||||
role: "Housewife & Parent",
|
||||
company: "Virar Family",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-ethnic-young-woman-shirt_23-2148143231.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-ethnic-young-woman-shirt_23-2148143231.jpg?_wi=2",
|
||||
imageAlt: "Neha Gupta - Patient testimonial",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function TestimonialsPage() {
|
||||
role: "Construction Manager",
|
||||
company: "Virar Construction",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-worker-construction-wearing-protection-gear_23-2148784062.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-worker-construction-wearing-protection-gear_23-2148784062.jpg?_wi=2",
|
||||
imageAlt: "Arjun Singh - Patient testimonial",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user