Add projects section

This commit is contained in:
Paul Nicoué 2023-02-21 11:52:22 +01:00
parent a0d337708e
commit 6c9c179283
8 changed files with 210 additions and 24 deletions

View file

@ -3,6 +3,7 @@
<main>
<HeroSection class="hero-section" />
<ServicesSection class="services-section" />
<ProjectsSection class="projects-section" />
<ContactSection class="contact-section" />
</main>
@ -28,26 +29,9 @@
main {
width: 100%;
display: grid;
grid:
'hero-section' auto
'services-section' auto
'contact-section' auto
/ 1fr;
place-content: start center;
place-items: start center;
.hero-section {
grid-area: hero-section;
}
.services-section {
grid-area: services-section;
}
.contact-section {
grid-area: contact-section;
}
display: flex;
flex-direction: column;
align-items: center;
}
</style>