add section Hero Section, section Skills, section About Me and the Navbar

This commit is contained in:
Morph01
2024-02-10 19:35:38 +01:00
parent 689be873fc
commit 08457d6b91
4 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
export default function HeroSection() {
return (
<section id="heroSection" className="hero--section">
<div className="hero--section--content-box">
<div className="hero--section--content">
<p className="section--title">Hello, je suis ALESSI Thibaut</p>
<h1 className="hero--section--title">
<span className="hero--section--title--color">
Etudiant à Polytech Lyon
</span>{" "}
<br />
Dev, BDD
</h1>
<p className="hero--section--description">
Voici la description, j'adore l'informatique miam miam
<br />A la recherche d'une alternance de 3 ans avec l'école
d'ingénieur Polytech Lyon
</p>
</div>
<button className="btn btn-primary">Contactez-moi</button>
</div>
<div className="hero--section--img">
<img src="./img/logo512.png" alt="Hero Section" />
</div>
</section>
);
}