Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 17:31:54 +00:00
2 changed files with 45 additions and 45 deletions

View File

@@ -1,54 +1,26 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Inter_Tight } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", 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: "Luxury Dental Practice | Premium Dental Care", description: "Experience exceptional dental care at our luxury practice. Expert cosmetic and restorative dentistry with state-of-the-art technology. Book your appointment today.", keywords: "luxury dental practice, cosmetic dentistry, dental implants, teeth whitening, premium dental care, expert dentist", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Luminous Dental | Your Smile, Our Passion", description: "Premium dental care delivered with expertise and luxury. Transform your smile today.", type: "website", siteName: "Luminous Dental", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-woman-with-fantastic-smile_1232-346.jpg", alt: "beautiful white smile teeth whitening"},
],
},
twitter: {
card: "summary_large_image", title: "Luxury Dental Practice | Luminous Dental", description: "Experience premium dental care with expert cosmetic and restorative services.", images: ["http://img.b2bpic.net/free-photo/close-up-woman-with-fantastic-smile_1232-346.jpg"],
},
};
title: "Luminous Dental | Premium Dental Care", description: "Experience premium dental care in a luxurious setting. Expert team, state-of-the-art facilities, and exceptional results."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${interTight.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -8,7 +8,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles, Award, Heart, Calendar } from "lucide-react";
import { Sparkles, Award, Heart, Calendar, Package } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,6 +30,7 @@ export default function LandingPage() {
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -109,6 +110,34 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardTwo
title="Our Dental Products"
description="Explore our premium selection of dental care products and accessories designed for optimal oral health and comfort."
tag="Quality Products"
tagIcon={Package}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", brand: "Oral Hygiene", name: "Electric Toothbrush Pro", price: "$89.99", rating: 5,
reviewCount: "245+", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-toothbrush_1232-1234.jpg", imageAlt: "Premium electric toothbrush"},
{
id: "2", brand: "Whitening Care", name: "Professional Whitening Kit", price: "$129.99", rating: 5,
reviewCount: "380+", imageSrc: "http://img.b2bpic.net/free-photo/dental-whitening-kit_1232-1235.jpg", imageAlt: "Teeth whitening kit for home use"},
{
id: "3", brand: "Fresh Breath", name: "Advanced Mouthwash", price: "$24.99", rating: 5,
reviewCount: "520+", imageSrc: "http://img.b2bpic.net/free-photo/mouthwash-bottle_1232-1236.jpg", imageAlt: "Professional-grade mouthwash"},
{
id: "4", brand: "Dental Care", name: "Premium Floss Set", price: "$34.99", rating: 5,
reviewCount: "195+", imageSrc: "http://img.b2bpic.net/free-photo/dental-floss_1232-1237.jpg", imageAlt: "Premium dental floss collection"},
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Patients Say"
@@ -191,4 +220,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}