Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 18:51:25 +00:00
2 changed files with 15 additions and 37 deletions

View File

@@ -1,45 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Luminous Dental | Premium Dental Care & Cosmetic Services", description: "Experience excellence in modern dentistry with state-of-the-art technology and compassionate care. Professional dental implants, whitening, and preventive treatments.", keywords: "dental practice, cosmetic dentistry, dental implants, teeth whitening, professional dental care, luxury dentist", openGraph: {
title: "Luminous Dental | Premium Dental Care", description: "Transform your smile with our world-class dental services. Expert cosmetic and restorative dentistry for over 25 years.", type: "website", siteName: "Luminous Dental"},
twitter: {
card: "summary_large_image", title: "Luminous Dental | Premium Dental Care", description: "Excellence in modern dentistry with state-of-the-art technology and compassionate expertise."},
};
title: "Luminous Dental - Premium Dental Care", description: "Experience excellence in modern dentistry with state-of-the-art technology and compassionate expertise."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactSplit from "@/components/sections/contact/ContactSplit";
@@ -65,7 +65,7 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<FeatureCardOne
<HeroBillboardGallery
title="Comprehensive Dental Services"
description="From preventive care to advanced cosmetic procedures, we offer a complete range of dental solutions tailored to your needs."
tag="Services"
@@ -73,19 +73,20 @@ export default function LandingPage() {
tagAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={true}
features={[
images={[
{
title: "Professional Cleaning", description: "Deep cleaning and preventive care to maintain optimal oral health and prevent future complications.", imageSrc: "http://img.b2bpic.net/free-photo/senior-stomatologist-helping-patient-stand-up-after-dental-surgery-medical-stomatology-clinic-office_482257-4916.jpg", imageAlt: "Professional dental checkup"
src: "http://img.b2bpic.net/free-photo/senior-stomatologist-helping-patient-stand-up-after-dental-surgery-medical-stomatology-clinic-office_482257-4916.jpg", alt: "Professional dental cleaning", title: "Professional Cleaning", description: "Deep cleaning and preventive care to maintain optimal oral health and prevent future complications."
},
{
title: "Cosmetic Whitening", description: "Advanced teeth whitening treatments that deliver stunning results in just one session.", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-work-with-patient-examining-her-teeth-with-dental-tools_651396-3419.jpg", imageAlt: "Teeth whitening treatment"
src: "http://img.b2bpic.net/free-photo/female-dentist-work-with-patient-examining-her-teeth-with-dental-tools_651396-3419.jpg", alt: "Teeth whitening treatment", title: "Cosmetic Whitening", description: "Advanced teeth whitening treatments that deliver stunning results in just one session."
},
{
title: "Dental Implants", description: "State-of-the-art implant technology that restores your smile with natural-looking, permanent solutions.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-dental-microscope-treating-female-patient-s-teeth_23-2147862048.jpg", imageAlt: "Dental implants procedure"
src: "http://img.b2bpic.net/free-photo/dentist-using-dental-microscope-treating-female-patient-s-teeth_23-2147862048.jpg", alt: "Dental implants procedure", title: "Dental Implants", description: "State-of-the-art implant technology that restores your smile with natural-looking, permanent solutions."
},
]}
gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
buttons={[]}
buttonAnimation="blur-reveal"
/>
</div>