cool update

This commit is contained in:
gpatruno
2026-04-19 23:06:50 +02:00
parent 5c423bae47
commit baef85bd99
27 changed files with 398 additions and 306 deletions
+13 -18
View File
@@ -1,13 +1,11 @@
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. */
/** Accueil : sidebar à gauche. Profil (`variant="profil"`) : contenu sans bandeau ni autobiographie. */
export function HomePageView({ variant = 'home' }) {
const isProfil = variant === 'profil'
@@ -17,25 +15,22 @@ export function HomePageView({ variant = 'home' }) {
.filter(Boolean)
.join(' ')}
>
<aside
className={['home-sidebar', isProfil ? 'home-sidebar--horizontal' : null]
.filter(Boolean)
.join(' ')}
aria-label="Profil"
>
<HomeSidebar layout={isProfil ? 'horizontal' : 'vertical'} />
</aside>
{!isProfil ? (
<aside className="home-sidebar" aria-label="Profil">
<HomeSidebar layout="vertical" />
</aside>
) : null}
<div className="home-main">
<ContentStack
panel1={
isProfil ? <HomeAutobiographiePanel /> : <HomeIntroPanel />
}
panel1={isProfil ? null : <HomeSkillsBlock />}
panel1b={
isProfil ? <HomeProfilCompetencesPanel /> : <HomeSkillsBlock />
}
panel2={
isProfil ? <HomeProfilQualitesPanel /> : <HomeEducationTimeline />
isProfil ? (
<HomeProfilCompetencesPanel />
) : (
<HomeEducationTimeline />
)
}
panel2={isProfil ? null : <HomeIntroPanel />}
/>
</div>
</div>