Feat: footer reveal + refactor page About
All checks were successful
Deploy / Deploy to Production (push) Successful in 24s

- Footer global fixé en bas (App.svelte), masqué par le contenu des slides
- margin-bottom sur .page-scrollable pour l'effet footer reveal (about, blog, article)
- About : champ intro remplacé par heading (text) + subtitle (writer), blueprint + API + vue mis à jour
- LanguageSwitcher : div → button avec hitbox élargie
- i18n : clé our_team (fr: NOTRE ÉQUIPE / en: OUR TEAM)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-03-17 10:00:53 +01:00
parent 61607f8cd7
commit b3b0580ab1
10 changed files with 148 additions and 130 deletions

View file

@ -7,6 +7,7 @@
import Cursor from '@components/layout/Cursor.svelte'
import LanguageSwitcher from '@components/ui/LanguageSwitcher.svelte'
import Footer from '@components/layout/Footer.svelte'
import Home from '@views/Home.svelte'
import About from '@views/About.svelte'
import Expertise from '@views/Expertise.svelte'
@ -95,6 +96,7 @@
{/each}
</div>
</main>
<Footer />
<LanguageSwitcher />
<style>
@ -127,6 +129,7 @@
.main {
position: relative;
z-index: 1;
overflow: hidden;
height: 100vh;
}
@ -155,4 +158,12 @@
background-position: center;
background-repeat: no-repeat;
}
:global(.site-footer) {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 0;
}
</style>