import React from 'react';
import { Toaster } from '@/components/ui/toaster';
import { useToast } from '@/components/ui/use-toast';
import HeroSection from '@/components/sections/HeroSection';
import MainCoursesSection from '@/components/sections/MainCoursesSection';
import SpecializedCoursesSection from '@/components/sections/SpecializedCoursesSection';
import CallToActionSection from '@/components/sections/CallToActionSection';
import StatsSection from '@/components/sections/StatsSection';
import WhyChooseUsSection from '@/components/sections/WhyChooseUsSection';
import Footer from '@/components/sections/Footer';
import { BookOpen, Target, Award, Heart, Sparkles, CheckCircle, Users, GraduationCap } from 'lucide-react';
const mainCoursesData = [
{
level: "Level 1",
title: "Foundation",
description: "Understanding the hair-health connection",
features: [
"Hair structure and biology basics",
"Nutritional foundations for hair health",
"Identifying common hair issues and their causes"
],
price: "Contact for pricing",
duration: "8 weeks",
icon: BookOpen
},
{
level: "Level 2",
title: "Advanced Practice",
description: "Master advanced assessment and treatment techniques",
features: [
"Advanced assessment techniques",
"Hormones and their impact on hair health",
"Creating personalized holistic hair protocols",
"Therapeutic approaches for various hair needs"
],
price: "Contact for pricing",
duration: "10 weeks",
icon: Target
},
{
level: "Level 3",
title: "Certification & Business",
description: "Build your professional practice",
features: [
"Clinical case studies and practice",
"Building a holistic hair therapy practice",
"Marketing your services effectively",
"Final certification and professional development"
],
price: "Contact for pricing",
duration: "12 weeks",
icon: Award
}
];
const specializedCoursesData = [
{
title: "Kefir for Hair",
description: "Learn the fundamentals of hair cuticle structure and how it impacts overall hair health. This course provides in-depth knowledge on assessing and addressing different levels of cuticle damage.",
price: "€95",
icon: Heart
},
{
title: "Nutrition For Hair Health",
subtitle: "Nutrition for Salon Owners",
description: "Discover how specific nutrients affect hair vitality and learn to create personalized nutritional plans for addressing various hair concerns naturally.",
price: "€120",
icon: Sparkles
},
{
title: "Hair Assessment Methods",
subtitle: "Advanced Hair Assessment",
description: "Master professional techniques for evaluating hair health, identifying underlying causes of hair issues, and creating targeted treatment plans.",
price: "€135",
icon: CheckCircle
},
{
title: "Scalp Health Course",
subtitle: "Holistic Scalp Health",
description: "Discover how to address common scalp conditions using natural and holistic approaches for optimal hair growth environment.",
price: "€110",
icon: Users
}
];
const whyChooseUsData = [
{
icon: GraduationCap,
title: "Expert-Led Curriculum",
description: "Learn from industry leaders with years of practical experience and research in holistic hair care."
},
{
icon: Users,
title: "Supportive Community",
description: "Join a network of passionate professionals and peers for continuous learning and collaboration."
},
{
icon: Award,
title: "Recognized Certification",
description: "Earn a certification that is respected and valued in the natural hair care industry worldwide."
},
{
icon: Sparkles,
title: "Holistic Approach",
description: "Our courses emphasize the interconnectedness of mind, body, and hair for comprehensive wellness."
}
];
function App() {
const { toast } = useToast();
const handleEnrollClick = (courseName) => {
toast({
title: "Enrollment Interest Recorded! 🎉",
description: `Thank you for your interest in ${courseName}. We'll contact you soon with enrollment details.`,
duration: 5000,
});
};
return (
<div className="min-h-screen bg-siteBackground">
<HeroSection onEnrollClick={handleEnrollClick} />
<MainCoursesSection
courses={mainCoursesData}
onEnrollClick={handleEnrollClick}
title="Flagship Certification Program"
subtitle="How to Become a Natural Hair Therapist"
description="Our comprehensive certification program takes you on a journey to becoming a qualified Natural Hair Therapist. Through this three-level program, you'll learn to address hair concerns by understanding their root causes in overall health and wellbeing."
/>
<SpecializedCoursesSection courses={specializedCoursesData} onEnrollClick={handleEnrollClick} />
<WhyChooseUsSection items={whyChooseUsData} />
<CallToActionSection onEnrollClick={handleEnrollClick} />
<StatsSection />
<Footer />
<Toaster />
</div>
);
}
export default App;