nouveau fichier : public/pictures/sea.gif

modifié :         src/components/Button.tsx
	modifié :         src/components/ClickableLink.tsx
	nouveau fichier : src/components/FstSection.tsx
	modifié :         src/components/NavBar.tsx
	modifié :         src/pages/MainPage.tsx

ajout de la première section
This commit is contained in:
ChenNux 2024-12-06 02:06:15 +01:00
parent 4e7259ae28
commit de11f64cc3
6 changed files with 50 additions and 5 deletions

View file

@ -1,14 +1,20 @@
import ArticlesSection from '../components/ArticlesSection.tsx'
import NavBar from '../components/NavBar.tsx'
import Footer from '../components/Footer.tsx'
import FstSection from '../components/FstSection.tsx'
export default function MainPage() {
return (
<>
<div style={{ display: 'flex', flexDirection: 'column', minHeight: '100vh' }}>
<NavBar />
<FstSection
centertxt="Choisissez votre numéro :"
txtbt1="Un"
txtbt2="Deux"
image="url('/pictures/sea.gif')"/>
<div style={{height:"30px"}} />
<ArticlesSection />
<Footer bgcolor="blue"/>
<Footer bgcolor="lightblue"/>
</div>
</>
)