import { ContentStack } from '../components/ContentStack.jsx' import { HomeAutobiographiePanel } from '../components/HomeAutobiographiePanel.jsx' import { HomeEducationTimeline } from '../components/HomeEducationTimeline.jsx' import { HomeIntroPanel } from '../components/HomeIntroPanel.jsx' import { HomeProfilCompetencesPanel } from '../components/HomeProfilCompetencesPanel.jsx' import { HomeProfilQualitesPanel } from '../components/HomeProfilQualitesPanel.jsx' import { HomeSkillsBlock } from '../components/HomeSkillsBlock.jsx' import { HomeSidebar } from '../components/HomeSidebar.jsx' /** Accueil : sidebar à gauche. Profil (`variant="profil"`) : bandeau profil horizontal au-dessus du contenu. */ export function HomePageView({ variant = 'home' }) { const isProfil = variant === 'profil' return (
: } panel1b={ isProfil ? : } panel2={ isProfil ? : } />
) }