5 Commits

Author SHA1 Message Date
de01206ff1 Update src/app/page.tsx 2026-03-07 14:25:39 +00:00
6a22ce143b Update src/app/layout.tsx 2026-03-07 14:25:38 +00:00
c08b3e7e5b Merge version_1 into main
Merge version_1 into main
2026-03-07 14:24:20 +00:00
aeb26af5ed Merge version_1 into main
Merge version_1 into main
2026-03-07 14:23:25 +00:00
c89e16c156 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:22:01 +00:00
2 changed files with 16 additions and 46 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Oro-Care Dental Clinic - Affordable Dental Care in Kolkata", description: "Professional dental clinic in Purbachal, Kolkata. Offering general, cosmetic, and restorative dentistry with 10+ years of experience. Book appointment online.", keywords: "dental clinic Kolkata, dentist Purbachal, cosmetic dentistry, dental implants, teeth whitening, root canal treatment, affordable dental care", metadataBase: new URL("https://orocaredental.com"), title: "Oro-Care Dental Clinic", description: "Modern dental care in Purbachal, Kolkata with expert treatments and affordable prices."};
alternates: {
canonical: "https://orocaredental.com"},
openGraph: {
title: "Oro-Care Dental Clinic - Healthy Teeth, Confident Smile", description: "Professional dental care in Purbachal, Kolkata with modern equipment and affordable treatments.", url: "https://orocaredental.com", siteName: "Oro-Care Dental Clinic", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/dental-cabinet-with-various-medical-equipment_140725-7678.jpg", alt: "Oro-Care Dental Clinic - Modern dental care facility"},
],
},
twitter: {
card: "summary_large_image", title: "Oro-Care Dental Clinic - Expert Dental Care in Kolkata", description: "Affordable professional dental treatments. Book your appointment today!", images: ["http://img.b2bpic.net/free-photo/dental-cabinet-with-various-medical-equipment_140725-7678.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -94,19 +94,19 @@ export default function LandingPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "General Dentistry", description: "Professional dental checkups, teeth cleaning, and tooth filling treatments for optimal oral health.", imageSrc: "http://img.b2bpic.net/free-photo/happy-dentist-patient-looking-each-other-while-choosing-color-tone-her-teeth_23-2147862060.jpg" title: "General Dentistry", description: "Prevent tooth decay and maintain healthy teeth through professional checkups and expert cleanings.", imageSrc: "http://img.b2bpic.net/free-photo/happy-dentist-patient-looking-each-other-while-choosing-color-tone-her-teeth_23-2147862060.jpg"
}, },
{ {
id: 2, id: 2,
title: "Cosmetic Dentistry", description: "Teeth whitening and smile designing services to enhance your natural beauty and confidence.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-stylish-laughing-model-gray-casual-summer-clothes-brown-hat-with-natural-makeup_158538-11695.jpg" title: "Cosmetic Dentistry", description: "Enhance your natural beauty and boost confidence with professional teeth whitening and personalized smile designing.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-stylish-laughing-model-gray-casual-summer-clothes-brown-hat-with-natural-makeup_158538-11695.jpg"
}, },
{ {
id: 3, id: 3,
title: "Restorative Dentistry", description: "Root canal treatments, dental crowns, and bridges to restore damaged teeth to full function.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-work-young-woman-dentist-treating-kid-tooth-dentistry-concept_169016-67119.jpg" title: "Restorative Dentistry", description: "Restore damaged teeth to full strength and function with advanced root canal treatments, durable crowns, and custom bridges.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-work-young-woman-dentist-treating-kid-tooth-dentistry-concept_169016-67119.jpg"
}, },
{ {
id: 4, id: 4,
title: "Tooth Replacement", description: "Advanced dental implants and denture solutions for complete smile restoration.", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19455.jpg" title: "Tooth Replacement", description: "Regain your complete smile with permanent dental implants and comfortable denture solutions that look and feel natural.", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19455.jpg"
} }
]} ]}
textboxLayout="default" textboxLayout="default"