39 Commits

Author SHA1 Message Date
cc996e8075 Update src/app/page.tsx 2026-03-19 20:48:06 +00:00
aa2106d1a5 Switch to version 5: modified src/app/styles/base.css 2026-03-19 20:44:44 +00:00
0eda9cea2d Switch to version 5: modified src/app/page.tsx 2026-03-19 20:44:44 +00:00
5841b36ba1 Switch to version 5: modified src/app/layout.tsx 2026-03-19 20:44:43 +00:00
1b896cb92e Switch to version 4: modified src/app/styles/base.css 2026-03-19 20:43:56 +00:00
94144367c2 Switch to version 4: modified src/app/page.tsx 2026-03-19 20:43:56 +00:00
bc87ab8866 Switch to version 4: modified src/app/layout.tsx 2026-03-19 20:43:55 +00:00
25c22649b6 Merge version_5 into main
Merge version_5 into main
2026-03-19 20:43:04 +00:00
2d34879150 Update src/app/page.tsx 2026-03-19 20:43:00 +00:00
7675dc9dd3 Merge version_3 into main
Merge version_3 into main
2026-03-19 20:41:01 +00:00
dd4842b91e Update theme fonts 2026-03-19 20:40:57 +00:00
de080817b7 Update theme fonts 2026-03-19 20:40:56 +00:00
e7ee2341b9 Merge version_3 into main
Merge version_3 into main
2026-03-19 20:40:50 +00:00
0307dcbd82 Update src/app/page.tsx 2026-03-19 20:40:40 +00:00
1464841b8e Merge version_3 into main
Merge version_3 into main
2026-03-19 20:40:33 +00:00
f0d99d0305 Update theme fonts 2026-03-19 20:40:29 +00:00
f563e1be33 Update theme fonts 2026-03-19 20:40:28 +00:00
e322c03961 Switch to version 3: modified src/app/page.tsx 2026-03-19 20:38:23 +00:00
9146e8a060 Merge version_4 into main
Merge version_4 into main
2026-03-19 20:37:50 +00:00
19fdc555f0 Update src/app/page.tsx 2026-03-19 20:37:40 +00:00
24f1865bcb Merge version_4 into main
Merge version_4 into main
2026-03-19 20:37:19 +00:00
3c4f00e607 Update src/app/page.tsx 2026-03-19 20:37:15 +00:00
2eebc1ea81 Merge version_3 into main
Merge version_3 into main
2026-03-19 20:35:17 +00:00
8f2ed5481d Update src/app/page.tsx 2026-03-19 20:35:13 +00:00
d230b638a3 Update src/app/page.tsx 2026-03-19 20:33:46 +00:00
cfd19db79f Merge version_1 into main
Merge version_1 into main
2026-03-19 20:32:08 +00:00
62765b8806 Update src/app/page.tsx 2026-03-19 20:30:58 +00:00
1182f70ddb Switch to version 1: modified src/app/page.tsx 2026-03-19 20:30:02 +00:00
3aced4eee8 Merge version_2 into main
Merge version_2 into main
2026-03-19 20:29:27 +00:00
a3f74f7f9f Update src/app/page.tsx 2026-03-19 20:29:17 +00:00
7220b59fc9 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:27:43 +00:00
7768712be8 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:27:24 +00:00
d4cedc2292 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:26:00 +00:00
0ca7d120cb Merge version_1 into main
Merge version_1 into main
2026-03-19 20:25:39 +00:00
38cc0a1847 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:25:16 +00:00
e738aeaf32 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:24:41 +00:00
fa7d7b06d6 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:12:30 +00:00
3ed1e0a6e1 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:11:59 +00:00
20c5fa9956 Merge version_1 into main
Merge version_1 into main
2026-03-19 20:11:37 +00:00
3 changed files with 67 additions and 97 deletions

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -14,8 +15,12 @@ export const metadata: Metadata = {
description: 'Experience premium dental care at Lumineux Dental. Expert cosmetic dentistry, dental implants, and orthodontics in a luxury environment.',
};
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -26,7 +31,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -3,8 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import ContactText from "@/components/sections/contact/ContactText";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactSplit from "@/components/sections/contact/ContactSplit";
@@ -27,116 +26,82 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Lumineux Dental"
brandName="G. MCARDLE"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Services", id: "features" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Book Appointment", href: "#contact"
text: "Get Free Quote", href: "#contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
title="Transform Your Smile with Premium Dental Care"
description="Experience world-class dentistry in a luxury environment. Our expert team combines cutting-edge technology with personalized care to deliver exceptional results and lasting confidence."
tag="Premium Dental Excellence"
title="Professional Plumbing Services You Can Trust"
description="Expert plumbing solutions for residential and commercial properties. Fast response times, transparent pricing, and guaranteed workmanship. Available 24/7 for emergency repairs."
tag="Professional Plumbing in Carlisle"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Schedule Consultation", href: "#contact" },
{ text: "Request Service", href: "#contact" },
{ text: "Learn More", href: "#features" }
]}
buttonAnimation="blur-reveal"
kpis={[
{ value: "25+", label: "Years Experience" },
{ value: "5000+", label: "Satisfied Patients" },
{ value: "100%", label: "Premium Care" }
{ value: "15+", label: "Years Experience" },
{ value: "2500+", label: "Homes Served" },
{ value: "24/7", label: "Emergency Support" }
]}
enableKpiAnimation={true}
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/indoor-hotel-view_1417-1562.jpg?_wi=1"
imageAlt="Luxury dental office reception area"
imageSrc="http://img.b2bpic.net/premium-photo/male-plumber-hands-fixing-metal-sink-pipe_386185-5648.jpg?id=20009150"
imageAlt="Professional plumbing installation"
mediaAnimation="opacity"
imagePosition="right"
/>
</div>
<div id="products" data-section="products">
<ProductCardTwo
title="Our Signature Services"
description="Comprehensive dental solutions tailored to your unique needs, delivered with precision and care."
tag="Specialized Care"
tagIcon={Heart}
tagAnimation="slide-up"
buttons={[
{ text: "View All Services", href: "#contact" }
]}
buttonAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={true}
products={[
{
id: "cosmetic", brand: "Cosmetic", name: "Smile Transformation", price: "Premium Results", rating: 5,
reviewCount: "2000+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg?_wi=1", imageAlt: "Cosmetic dentistry smile transformation"
},
{
id: "implants", brand: "Restoration", name: "Dental Implants", price: "Complete Solution", rating: 5,
reviewCount: "1800+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151053263.jpg?_wi=1", imageAlt: "Advanced dental implant procedure"
},
{
id: "orthodontics", brand: "Alignment", name: "Invisible Braces", price: "Discreet & Effective", rating: 5,
reviewCount: "1500+", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pleased-smiling-woman-dentist-s-clinic_329181-20765.jpg?_wi=1", imageAlt: "Clear aligner orthodontic treatment"
}
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Meet Our Founder & Lead Dentist" }
]}
useInvertedBackground={false}
<ContactText
text="Elite Plumbing Solutions - Your Trusted Local Experts. We deliver professional, reliable plumbing services with expert technicians, transparent pricing, and same-day service availability."
animationType="entrance-slide"
buttons={[
{ text: "Learn Our Story", href: "#contact" }
{ text: "Contact Us", href: "#contact" }
]}
buttonAnimation="blur-reveal"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="features" data-section="features">
<FeatureCardOne
title="Why Choose Lumineux Dental"
description="We combine advanced technology, expert expertise, and compassionate care to create exceptional dental experiences."
tag="Excellence Assured"
title="Why Choose Elite Plumbing"
description="We deliver professional, reliable plumbing services with expert technicians, transparent pricing, and same-day service availability."
tag="Excellence in Service"
tagIcon={Award}
tagAnimation="slide-up"
buttons={[
{ text: "Discover Our Approach", href: "#contact" }
{ text: "Schedule Service", href: "#contact" }
]}
buttonAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "State-of-the-Art Technology", description: "Latest digital imaging, laser dentistry, and CAD/CAM technology for precision diagnostics and treatment.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-hotel-view_1417-1562.jpg?_wi=2", imageAlt: "Advanced dental technology"
title: "Expert Technicians", description: "Fully trained and certified plumbers with extensive experience in residential, commercial, and industrial plumbing systems.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-hotel-view_1417-1562.jpg?_wi=2", imageAlt: "Professional plumbing technician"
},
{
title: "Luxury Comfort Environment", description: "Serene, spa-like setting with premium amenities designed to ease patient anxiety and enhance relaxation.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg?_wi=2", imageAlt: "Luxury dental practice environment"
title: "24/7 Emergency Service", description: "Available around the clock for emergencies. We respond quickly to burst pipes, leaks, and other urgent plumbing issues.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg?_wi=2", imageAlt: "Emergency plumbing response"
},
{
title: "Personalized Treatment Plans", description: "Customized care strategies developed specifically for your goals, preferences, and unique dental needs.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151053263.jpg?_wi=2", imageAlt: "Personalized dental care planning"
title: "Transparent Pricing", description: "No hidden fees. We provide upfront quotes and detailed invoices so you know exactly what you're paying for.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151053263.jpg?_wi=2", imageAlt: "Fair pricing guarantee"
},
{
title: "Expert Team of Specialists", description: "Board-certified dentists and specialists with decades of combined experience in all aspects of dentistry.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pleased-smiling-woman-dentist-s-clinic_329181-20765.jpg?_wi=2", imageAlt: "Expert dental specialists"
title: "Guaranteed Workmanship", description: "All our work is backed by a comprehensive warranty. We stand behind every job and ensure customer satisfaction.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pleased-smiling-woman-dentist-s-clinic_329181-20765.jpg?_wi=2", imageAlt: "Quality workmanship assurance"
}
]}
gridVariant="two-columns-alternating-heights"
@@ -146,29 +111,29 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="Patient Success Stories"
description="Real experiences from patients who transformed their smiles and confidence with our care."
tag="Patient Testimonials"
title="Customer Testimonials"
description="Real experiences from satisfied customers who trust Elite Plumbing for their needs."
tag="Customer Reviews"
tagIcon={Star}
tagAnimation="slide-up"
buttons={[
{ text: "Read More Reviews", href: "#contact" }
{ text: "Read More", href: "#contact" }
]}
buttonAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Mitchell", handle: "@sarahmiles", testimonial: "Dr. Chen completely transformed my smile. The level of care and attention to detail was exceptional. I've never felt more confident!", imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-showing-thumbs-up_1262-5857.jpg", imageAlt: "Sarah Mitchell patient testimonial", icon: Heart
id: "1", name: "Robert Smith", handle: "@robertsmith", testimonial: "Elite Plumbing fixed our main water leak quickly and professionally. The technician was courteous and the work was excellent. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-showing-thumbs-up_1262-5857.jpg", imageAlt: "Robert Smith testimonial", icon: Heart
},
{
id: "2", name: "James Richardson", handle: "@james_r", testimonial: "From consultation to completion, the experience was seamless. The staff treated me like family and the results exceeded my expectations.", imageSrc: "http://img.b2bpic.net/free-photo/serious-face-young-businessman-looking-up_1262-5526.jpg", imageAlt: "James Richardson patient testimonial", icon: Heart
id: "2", name: "Margaret Johnson", handle: "@margaret_j", testimonial: "They installed our new boiler system perfectly. On time, professional, and the price was fair. I've already recommended them to my neighbors.", imageSrc: "http://img.b2bpic.net/free-photo/serious-face-young-businessman-looking-up_1262-5526.jpg", imageAlt: "Margaret Johnson testimonial", icon: Heart
},
{
id: "3", name: "Emma Laurent", handle: "@emma_design", testimonial: "I was nervous about my implant procedure, but Dr. Chen's expertise and calming presence made everything comfortable. Best decision ever!", imageSrc: "http://img.b2bpic.net/free-photo/confident-young-woman-doctor-with-toothy-smile-generated-by-ai_188544-29156.jpg", imageAlt: "Emma Laurent patient testimonial", icon: Heart
id: "3", name: "David Wilson", handle: "@davidwilson", testimonial: "Called them for an emergency at 2 AM and they were here within an hour. Fixed our burst pipe and prevented major water damage. Fantastic service!", imageSrc: "http://img.b2bpic.net/free-photo/confident-young-woman-doctor-with-toothy-smile-generated-by-ai_188544-29156.jpg", imageAlt: "David Wilson testimonial", icon: Heart
},
{
id: "4", name: "Michael Torres", handle: "@m_torres", testimonial: "The invisible braces treatment was discreet and effective. Within 18 months, I had the straight smile I always wanted. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "Michael Torres patient testimonial", icon: Heart
id: "4", name: "Sandra Lee", handle: "@sandralee", testimonial: "The drain cleaning service was thorough and efficient. No more backups! The team was professional and left everything clean. Worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "Sandra Lee testimonial", icon: Heart
}
]}
animationType="slide-up"
@@ -179,50 +144,50 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
tag="Get Started"
title="Schedule Your Consultation"
description="Ready to transform your smile? Contact us today to book your personalized consultation with our expert team."
tag="Contact Us"
title="Get Your Free Plumbing Quote"
description="Contact Elite Plumbing Solutions today for professional service, emergency repairs, or to schedule your appointment. We're available 24/7 at 45 Percy Rd, Carlisle CA2 6ER, United Kingdom or call +447723356849."
tagIcon={Calendar}
tagAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-vector/corporate-medical-infographic-with-photo_23-2148372561.jpg"
imageAlt="Dental appointment booking"
imageAlt="Plumbing service booking"
mediaAnimation="opacity"
mediaPosition="right"
inputPlaceholder="Enter your email address"
buttonText="Book Appointment"
termsText="By scheduling, you agree to our Terms and Conditions and Privacy Policy."
buttonText="Get Free Quote"
termsText="By submitting, you agree to our Terms and Conditions and Privacy Policy."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Lumineux Dental"
copyrightText="© 2025 Lumineux Dental Practice. All rights reserved."
logoText="Elite Plumbing Solutions"
copyrightText="© 2025 Elite Plumbing Solutions. All rights reserved."
columns={[
{
title: "Practice", items: [
title: "Services", items: [
{ label: "Pipe Repairs", href: "#products" },
{ label: "Drain Cleaning", href: "#products" },
{ label: "Boiler Installation", href: "#products" },
{ label: "Emergency Service", href: "#contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Services", href: "#features" },
{ label: "Our Team", href: "#features" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Services", items: [
{ label: "Cosmetic Dentistry", href: "#products" },
{ label: "Dental Implants", href: "#products" },
{ label: "Orthodontics", href: "#products" },
{ label: "Emergency Care", href: "#contact" }
]
},
{
title: "Connect", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Email: hello@lumineux.dental", href: "mailto:hello@lumineux.dental" },
{ label: "Address: 123 Smile St, City", href: "#" },
{ label: "Hours: Mon-Fri 9am-6pm", href: "#" }
title: "Contact Info", items: [
{ label: "Phone: +447723356849", href: "tel:+447723356849" },
{ label: "Email: info@eliteplumbing.co.uk", href: "mailto:info@eliteplumbing.co.uk" },
{ label: "Address: 45 Percy Rd, Carlisle CA2 6ER, UK", href: "#" },
{ label: "Hours: 24/7 Service", href: "#" }
]
},
{

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-roboto), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-roboto), sans-serif;
}