12 Commits

Author SHA1 Message Date
85ee965c48 Update src/app/page.tsx 2026-03-05 04:36:40 +00:00
a3bc759457 Update src/app/layout.tsx 2026-03-05 04:36:40 +00:00
3e9a30463d Merge version_2 into main
Merge version_2 into main
2026-03-05 04:35:15 +00:00
20483c4f49 Update src/app/page.tsx 2026-03-05 04:35:11 +00:00
c6c57ae1ee Merge version_2 into main
Merge version_2 into main
2026-03-05 04:34:02 +00:00
303755efcc Update src/app/page.tsx 2026-03-05 04:33:57 +00:00
b41220d415 Update src/app/layout.tsx 2026-03-05 04:33:57 +00:00
168901ce4f Merge version_1 into main
Merge version_1 into main
2026-03-05 04:29:37 +00:00
ea43a39d8d Merge version_1 into main
Merge version_1 into main
2026-03-05 04:28:57 +00:00
2592477013 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:27:43 +00:00
13f57211f2 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:26:28 +00:00
949bf34e87 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:25:20 +00:00
2 changed files with 12 additions and 45 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Luminous Dental | Premium Luxury Dental Care", description: "Experience exceptional dental care at Luminous Dental. Award-winning cosmetic, implant, and restorative dentistry with world-class specialists.", keywords: "luxury dental practice, cosmetic dentistry, dental implants, orthodontics, smile design, premium dental care", metadataBase: new URL("https://luminousdental.com"),
alternates: {
canonical: "https://luminousdental.com"},
openGraph: {
title: "Luminous Dental | Premium Luxury Dental Care", description: "Transform your smile with exceptional dental treatments delivered with precision and artistry. Experience luxury dentistry.", url: "https://luminousdental.com", siteName: "Luminous Dental", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg", alt: "Luxurious dental practice"},
],
},
twitter: {
card: "summary_large_image", title: "Luminous Dental | Premium Dental Care", description: "Experience world-class dental treatments in a luxury environment designed for your comfort.", images: ["http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Luminous Dental", description: "Experience exceptional dental care with cutting-edge technology and compassionate specialists."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -60,6 +60,12 @@ export default function LandingPage() {
{ text: "Learn More", href: "#about" },
]}
buttonAnimation="slide-up"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", alt: "Patient 1" },
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Patient 2" },
{ src: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", alt: "Patient 3" },
]}
avatarText="10,000+ patients trust us"
imageSrc="http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"
imageAlt="Luxurious dental office interior"
mediaAnimation="slide-up"