7 Commits

Author SHA1 Message Date
da96e423c4 Update src/app/page.tsx 2026-03-04 06:07:08 +00:00
21b8af2dd9 Update src/app/layout.tsx 2026-03-04 06:07:08 +00:00
2b8817c653 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:06:12 +00:00
5ec3489c4b Merge version_1 into main
Merge version_1 into main
2026-03-04 06:05:27 +00:00
123471029a Merge version_1 into main
Merge version_1 into main
2026-03-04 06:04:01 +00:00
4ba81b8831 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:02:31 +00:00
6f3d8c6266 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:01:11 +00:00
2 changed files with 7 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Luxury Dental Practice | Premium Cosmetic & Restorative Dentistry", description: "Experience world-class dental care with advanced cosmetic, restorative, and orthodontic treatments. Schedule your consultation at our premium practice today.", keywords: "luxury dental care, cosmetic dentistry, dental implants, orthodontics, smile makeover, professional dentist", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Luminous Dental | Premium Dental Care", description: "Transform your smile with our advanced dental treatments and luxury care experience.", siteName: "Luminous Dental", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11693.jpg", alt: "dental smile teeth whitening professional"},
],
},
twitter: {
card: "summary_large_image", title: "Luminous Dental | Premium Dental Care", description: "Experience luxury dental treatments with advanced technology and expert care.", images: ["http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11693.jpg"],
},
};
title: "Luminous Dental - Premium Dental Care", description: "Experience premium dental care with advanced technology and compassionate professionals."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -133,7 +133,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Patients Say"
description="Real experiences from patients who trust us with their smiles"
description="Trusted by 500+ patients nationwide. Real experiences from patients who trust us with their smiles"
tag="Testimonials"
tagIcon={Heart}
tagAnimation="slide-up"