This commit is contained in:
2025-08-27 18:51:25 +02:00
parent 16b965c457
commit 24c2a245b6
6 changed files with 49 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ import FFVid from '@/components/FreeflowVideo'
import { Experiences } from '@/components/Experiences'
import Carousel from '@/components/Carousel'
import { Testimonials } from '@/components/Testimonials'
import { HeroJourney } from '@/components/HeroJourney'
export default function ExperiencesPage() {
const [selectedExperience, setSelectedExperience] = useState('retreats')
@@ -37,6 +38,7 @@ export default function ExperiencesPage() {
<>
<Header />
<main>
<HeroJourney />
<Experiences onExperienceSelect={setSelectedExperience} />
{renderSelectedComponent()}
<Carousel />