Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-05 04:34:02 +00:00
2 changed files with 7 additions and 56 deletions

View File

@@ -1,58 +1,17 @@
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"],
});
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 - Premium Dental Care", description: "Experience exceptional dental care with cutting-edge technology and compassionate specialists at Luminous Dental."};
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>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
@@ -42,16 +42,10 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
<HeroBillboard
title="Experience Exceptional Dental Care"
description="Welcome to Luminous Dental, where cutting-edge technology meets compassionate care. Our team of internationally-trained specialists delivers personalized treatment plans in a serene, luxury environment designed for your comfort and wellbeing."
background={{ variant: "glowing-orb" }}
kpis={[
{ value: "25+", label: "Years Excellence" },
{ value: "10,000+", label: "Satisfied Patients" },
{ value: "99.8%", label: "Patient Satisfaction" },
]}
enableKpiAnimation={true}
tag="Premium Dental Care"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -63,7 +57,6 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"
imageAlt="Luxurious dental office interior"
mediaAnimation="slide-up"
imagePosition="right"
containerClassName="min-h-screen"
titleClassName="text-4xl md:text-5xl font-light"
descriptionClassName="text-lg text-gray-700"