Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-05-19 16:33:57 +00:00

View File

@@ -1,13 +1,6 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { NavbarOne } from "@/components/navbar/NavbarOne";
import { HeroOne } from "@/sections/hero/HeroOne";
import { ContentTwo } from "@/sections/about/ContentTwo";
import { FeatureFour } from "@/sections/features/FeatureFour";
import { PricingOne } from "@/sections/pricing/PricingOne";
import { ContactOne } from "@/sections/contact/ContactOne";
import { FooterOne } from "@/sections/footer/FooterOne";
export default function LandingPage() {
return (
@@ -15,68 +8,15 @@ export default function LandingPage() {
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarOne
logo="Dr. Maria Nikolaidou"
links={[
{ label: "Philosophy", href: "#philosophy" },
{ label: "Services", href: "#services" },
{ label: "Skin Quiz", href: "#quiz" },
{ label: "Contact", href: "#contact" }
]}
buttonLabel="Book Consultation"
/>
</div>
<div id="hero" data-section="hero">
<HeroOne
title="The science behind your natural glow"
description="Tailored dermatological care blending clinical precision with aesthetic artistry for results that feel uniquely yours."
primaryButtonText="Start Your Journey"
/>
</div>
<div id="philosophy" data-section="philosophy">
<ContentTwo
title="Personalized Dermatological Care"
description="We believe beauty is personal, rooted in science, and nurtured by expertise. Dr. Maria Nikolaidou provides a sanctuary where your skin is the sole focus, ensuring treatments are as individualized as you are."
/>
</div>
<div id="services" data-section="services">
<FeatureFour
title="Our Specialized Services"
features={[
{ title: "Clinical Dermatology", description: "Evidence-based treatments for skin health, acne, and complex conditions with a focus on long-term wellness." },
{ title: "Aesthetic Dermatology", description: "Refined interventions designed to enhance your natural features, prioritizing balance, vitality, and rejuvenation." }
]}
/>
</div>
<div id="quiz" data-section="quiz">
<PricingOne
title="Your Custom Skin Plan"
plans={[
{ name: "Step 1: Consultation", price: "Analysis", features: ["Assessment of current routine", "Medical history review"] },
{ name: "Step 2: Diagnosis", price: "Evaluation", features: ["Personalized goal setting", "Treatment timeline planning"] },
{ name: "Step 3: Roadmap", price: "Action", features: ["Daily protocol initiation", "Follow-up schedule"] }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactOne
title="Schedule Your Visit"
description="Begin your transformation at our clinic. Fill out the form or reach out directly to coordinate your appointment."
/>
</div>
<div id="footer" data-section="footer">
<FooterOne
logo="Dr. Maria Nikolaidou"
copyright="© 2024 Dr. Maria Nikolaidou. All rights reserved."
/>
</div>
</ThemeProvider>
);