projet-nuitinfo-2024/front/src/pages/MainPage.tsx
ChenNux de11f64cc3 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
2024-12-06 02:06:15 +01:00

21 lines
No EOL
702 B
TypeScript

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' }}>
<FstSection
centertxt="Choisissez votre numéro :"
txtbt1="Un"
txtbt2="Deux"
image="url('/pictures/sea.gif')"/>
<div style={{height:"30px"}} />
<ArticlesSection />
<Footer bgcolor="lightblue"/>
</div>
</>
)
}