Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85ee965c48 | |||
| a3bc759457 | |||
| 3e9a30463d | |||
| 20483c4f49 | |||
| c6c57ae1ee | |||
| 303755efcc | |||
| b41220d415 | |||
| 168901ce4f | |||
| ea43a39d8d | |||
| 2592477013 | |||
| 13f57211f2 | |||
| 949bf34e87 |
@@ -1,58 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Inter_Tight } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Luminous Dental", description: "Experience exceptional dental care with cutting-edge technology and compassionate specialists."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,6 +60,12 @@ export default function LandingPage() {
|
|||||||
{ text: "Learn More", href: "#about" },
|
{ text: "Learn More", href: "#about" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
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"
|
imageSrc="http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"
|
||||||
imageAlt="Luxurious dental office interior"
|
imageAlt="Luxurious dental office interior"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user