7 Commits

Author SHA1 Message Date
999df81fbc Update src/app/page.tsx 2026-04-09 06:49:25 +00:00
7fdb018f85 Switch to version 1: remove src/app/privacy-policy/page.tsx 2026-04-09 06:48:07 +00:00
10b181f7b5 Switch to version 1: modified src/app/page.tsx 2026-04-09 06:48:07 +00:00
156997d20e Merge version_2 into main
Merge version_2 into main
2026-04-09 06:45:37 +00:00
ae14afbf02 Merge version_2 into main
Merge version_2 into main
2026-04-09 06:45:04 +00:00
8f1eb6d6b7 Merge version_2 into main
Merge version_2 into main
2026-04-09 06:42:29 +00:00
ab300e8204 Merge version_2 into main
Merge version_2 into main
2026-04-09 06:41:59 +00:00
2 changed files with 4 additions and 84 deletions

View File

@@ -76,15 +76,15 @@ export default function LuxuryDentistPage() {
useInvertedBackground={true}
products={[
{
id: "1", brand: "Cosmetic", name: "Smile Design & Whitening", price: "From $500", rating: 5,
id: "1", brand: "Cosmetic", name: "Smile Design & Whitening", price: "Starting from $500", rating: 5,
reviewCount: "234", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service1.avif", imageAlt: "Cosmetic smile design consultation"
},
{
id: "2", brand: "Restorative", name: "Dental Implants & Crowns", price: "From $1,200", rating: 5,
id: "2", brand: "Restorative", name: "Dental Implants & Crowns", price: "Starting from $1,200", rating: 5,
reviewCount: "312", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service2.avif", imageAlt: "Advanced dental implant technology"
},
{
id: "3", brand: "Advanced", name: "Orthodontics & Aligners", price: "From $800", rating: 5,
id: "3", brand: "Advanced", name: "Orthodontics & Aligners", price: "Starting from $800", rating: 5,
reviewCount: "289", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service3.avif", imageAlt: "Clear aligner orthodontic treatment"
}
]}
@@ -209,4 +209,4 @@ export default function LuxuryDentistPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,80 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBase from '@/components/sections/footer/FooterBase';
import LegalSection from '@/components/legal/LegalSection';
export default function PrivacyPolicyPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Luxury Dental Care"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/#about" },
{ name: "Privacy Policy", id: "/privacy-policy" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Book Now", href: "/#contact" }}
/>
</div>
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: May 2024"
sections={[
{
heading: "1. Information We Collect", content: { type: "paragraph", text: "We collect information you provide directly to us, such as when you schedule a consultation, fill out a contact form, or communicate with our staff. This may include your name, email address, phone number, and dental history." }
},
{
heading: "2. How We Use Your Information", content: { type: "list", items: ["To provide and maintain our dental services", "To communicate with you regarding appointments and care", "To improve our patient experience and website", "To comply with legal obligations"] }
},
{
heading: "3. Data Security", content: { type: "paragraph", text: "We implement robust security measures to protect your personal information from unauthorized access, alteration, or destruction. We are committed to maintaining the confidentiality of your health information." }
},
{
heading: "4. Your Rights", content: { type: "list", items: ["You have the right to request access to your personal data", "You have the right to request correction of inaccurate data", "You have the right to request deletion of your information"] }
}
]}
/>
<div id="footer" data-section="footer">
<FooterBase
logoText="Luxury Dental Care California"
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
columns={[
{
title: "Services", items: [
{ label: "Cosmetic Dentistry", href: "/#services" },
{ label: "Dental Implants", href: "/#services" },
{ label: "Orthodontics", href: "/#services" },
{ label: "Restorative Care", href: "/#services" }
]
},
{
title: "Practice", items: [
{ label: "About Us", href: "/#about" },
{ label: "Privacy Policy", href: "/privacy-policy" },
{ label: "Our Team", href: "/#testimonials" },
{ label: "Technology", href: "/#features" },
{ label: "Contact Us", href: "/#contact" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Google Reviews", href: "https://google.com" },
{ label: "Smile Gallery", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}