Merge version_2 into main #3
@@ -1,53 +1,28 @@
|
||||
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 { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxury Dental Care | Luminous Dental Practice", description: "Experience exceptional dental care in an atmosphere of pure luxury. Premium cosmetic dentistry, implants, and orthodontics from expert specialists.", keywords: "luxury dental practice, cosmetic dentistry, dental implants, orthodontics, premium dental care", metadataBase: new URL("https://luminousdental.com"),
|
||||
alternates: {
|
||||
canonical: "https://luminousdental.com"},
|
||||
openGraph: {
|
||||
title: "Luxury Dental Care | Luminous Dental Practice", description: "Experience exceptional dental care in an atmosphere of pure luxury. Premium cosmetic dentistry, implants, and orthodontics.", url: "https://luminousdental.com", siteName: "Luminous Dental", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67133.jpg", alt: "Luminous Dental Practice"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Luxury Dental Care | Luminous Dental Practice", description: "Premium dental practice delivering exceptional care with luxury comfort and cutting-edge technology.", images: ["http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67133.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -77,14 +77,11 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Cosmetic Excellence", name: "Smile Enhancement", price: "Custom Quote", rating: 5,
|
||||
{ id: "1", brand: "Cosmetic Excellence", name: "Smile Enhancement", price: "Custom Quote", rating: 5,
|
||||
reviewCount: "2.4k", imageSrc: "http://img.b2bpic.net/free-photo/young-female-patient-having-dental-procedure-orthodontist_23-2148985764.jpg", imageAlt: "Cosmetic dentistry smile transformation"},
|
||||
{
|
||||
id: "2", brand: "Advanced Restoration", name: "Dental Implants", price: "Custom Quote", rating: 5,
|
||||
{ id: "2", brand: "Advanced Restoration", name: "Dental Implants", price: "Custom Quote", rating: 5,
|
||||
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/dentist-examining-female-patient-with-teeth-shades_107420-73950.jpg", imageAlt: "Dental implant restoration"},
|
||||
{
|
||||
id: "3", brand: "Perfect Alignment", name: "Orthodontics", price: "Custom Quote", rating: 5,
|
||||
{ id: "3", brand: "Perfect Alignment", name: "Orthodontics", price: "Custom Quote", rating: 5,
|
||||
reviewCount: "1.6k", imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-standing-holding-box_107420-73955.jpg", imageAlt: "Professional orthodontic treatment"},
|
||||
]}
|
||||
/>
|
||||
@@ -93,12 +90,9 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "We are committed to delivering exceptional"},
|
||||
{
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/confident-businessman_1098-16876.jpg", alt: "Dr. Alexandra Mitchell, Practice Founder"},
|
||||
{
|
||||
type: "text", content: "dental care with personalized attention and luxury comfort."},
|
||||
{ type: "text", content: "We are committed to delivering exceptional"},
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/confident-businessman_1098-16876.jpg", alt: "Dr. Alexandra Mitchell, Practice Founder"},
|
||||
{ type: "text", content: "dental care with personalized attention and luxury comfort."},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Meet Our Team", href: "#testimonials" }]}
|
||||
@@ -118,12 +112,9 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
features={[
|
||||
{
|
||||
title: "Advanced Technology", description: "Cutting-edge digital imaging and treatment technology for precise, efficient care.", imageSrc: "http://img.b2bpic.net/free-photo/beauty-brunette-female-waiting-while-dentist-working-computer-dentistry-care-visit_613910-21196.jpg", imageAlt: "State-of-the-art dental technology"},
|
||||
{
|
||||
title: "Ultimate Comfort", description: "Serene environment with premium amenities designed for relaxation and peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/team-specialists-doing-surgical-procedure-man-with-toothache-using-dental-tools-instrument-stomatology-operation-dentist-nurse-extracting-teeth-oral-care-clinic_482257-35271.jpg", imageAlt: "Luxurious patient comfort experience"},
|
||||
{
|
||||
title: "Expert Care", description: "Highly trained specialists dedicated to personalized treatment and exceptional outcomes.", imageSrc: "http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg", imageAlt: "Professional dental care expertise"},
|
||||
{ title: "Advanced Technology", description: "Cutting-edge digital imaging and treatment technology for precise, efficient care.", imageSrc: "http://img.b2bpic.net/free-photo/beauty-brunette-female-waiting-while-dentist-working-computer-dentistry-care-visit_613910-21196.jpg", imageAlt: "State-of-the-art dental technology"},
|
||||
{ title: "Ultimate Comfort", description: "Serene environment with premium amenities designed for relaxation and peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/team-specialists-doing-surgical-procedure-man-with-toothache-using-dental-tools-instrument-stomatology-operation-dentist-nurse-extracting-teeth-oral-care-clinic_482257-35271.jpg", imageAlt: "Luxurious patient comfort experience"},
|
||||
{ title: "Expert Care", description: "Highly trained specialists dedicated to personalized treatment and exceptional outcomes.", imageSrc: "http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg", imageAlt: "Professional dental care expertise"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -136,18 +127,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Catherine Wellington", handle: "@cwellington", testimonial: "Outstanding experience from start to finish. The attention to detail and genuine care is unmatched. I finally feel confident about my smile.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", imageAlt: "Catherine Wellington"},
|
||||
{
|
||||
id: "2", name: "Marcus Ashford", handle: "@marcusashford", testimonial: "Dr. Mitchell transformed my smile with such skill and artistry. The entire team made me feel valued and comfortable throughout my treatment journey.", imageSrc: "http://img.b2bpic.net/free-photo/young-male-holding-hands-his-jacket-white-shirt-jacket-looking-confident-front-view_176474-99665.jpg", imageAlt: "Marcus Ashford"},
|
||||
{
|
||||
id: "3", name: "Sophia Chen", handle: "@sophiachen", testimonial: "The luxury touches and professional expertise create an experience beyond ordinary dentistry. Worth every moment invested in my dental health.", imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg", imageAlt: "Sophia Chen"},
|
||||
{
|
||||
id: "4", name: "James Hartwell", handle: "@jhartwell", testimonial: "Best dental practice I've encountered. The technology is impressive, but the personal touch and genuine care are what truly set them apart from the rest.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-male-offering-coffee-paper-cup_23-2148112133.jpg", imageAlt: "James Hartwell"},
|
||||
{
|
||||
id: "5", name: "Isabella Romano", handle: "@isabellaromano", testimonial: "Every detail matters here, from the serene atmosphere to the expert treatment. I recommend Luminous Dental to everyone who values quality and elegance.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blond-female-dressed-white-shirt-red-eyeglasses_613910-14657.jpg", imageAlt: "Isabella Romano"},
|
||||
{
|
||||
id: "6", name: "Alexander Brent", handle: "@alexbrent", testimonial: "Exceptional dental care in a beautiful, sophisticated setting. The results speak for themselves, and the experience is nothing short of premium luxury.", imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg", imageAlt: "Alexander Brent"},
|
||||
{ id: "1", name: "Catherine Wellington", handle: "@cwellington", testimonial: "Outstanding experience from start to finish. The attention to detail and genuine care is unmatched. I finally feel confident about my smile.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", imageAlt: "Catherine Wellington"},
|
||||
{ id: "2", name: "Marcus Ashford", handle: "@marcusashford", testimonial: "Dr. Mitchell transformed my smile with such skill and artistry. The entire team made me feel valued and comfortable throughout my treatment journey.", imageSrc: "http://img.b2bpic.net/free-photo/young-male-holding-hands-his-jacket-white-shirt-jacket-looking-confident-front-view_176474-99665.jpg", imageAlt: "Marcus Ashford"},
|
||||
{ id: "3", name: "Sophia Chen", handle: "@sophiachen", testimonial: "The luxury touches and professional expertise create an experience beyond ordinary dentistry. Worth every moment invested in my dental health.", imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg", imageAlt: "Sophia Chen"},
|
||||
{ id: "4", name: "James Hartwell", handle: "@jhartwell", testimonial: "Best dental practice I've encountered. The technology is impressive, but the personal touch and genuine care are what truly set them apart from the rest.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-male-offering-coffee-paper-cup_23-2148112133.jpg", imageAlt: "James Hartwell"},
|
||||
{ id: "5", name: "Isabella Romano", handle: "@isabellaromano", testimonial: "Every detail matters here, from the serene atmosphere to the expert treatment. I recommend Luminous Dental to everyone who values quality and elegance.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blond-female-dressed-white-shirt-red-eyeglasses_613910-14657.jpg", imageAlt: "Isabella Romano"},
|
||||
{ id: "6", name: "Alexander Brent", handle: "@alexbrent", testimonial: "Exceptional dental care in a beautiful, sophisticated setting. The results speak for themselves, and the experience is nothing short of premium luxury.", imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg", imageAlt: "Alexander Brent"},
|
||||
]}
|
||||
speed={40}
|
||||
/>
|
||||
@@ -156,7 +141,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Newsletter"
|
||||
title="Stay Updated on Dental Excellence"
|
||||
title="Get Exclusive Dental Care Tips & Offers"
|
||||
description="Subscribe to receive exclusive insights on smile wellness, special offers, and the latest in luxury dental care delivered to your inbox."
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user