8 Commits

Author SHA1 Message Date
5f7a31795d Merge version_3 into main
Merge version_3 into main
2026-03-07 14:29:56 +00:00
64b80e47ca Update src/app/page.tsx 2026-03-07 14:29:51 +00:00
df74dfbb01 Merge version_2 into main
Merge version_2 into main
2026-03-07 14:25:43 +00:00
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 19 additions and 46 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
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"),
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,
},
};
title: "Oro-Care Dental Clinic", description: "Modern dental care in Purbachal, Kolkata with expert treatments and affordable prices."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -94,23 +94,26 @@ export default function LandingPage() {
features={[
{
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,
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,
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,
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"
useInvertedBackground={false}
buttons={[
{ text: "Get Service", href: "#appointment" }
]}
/>
</div>