···11---
22+import "@/assets/styles/index.css";
23import Layout from "@/layouts/Layout.astro";
34---
4555-<Layout> Bonjour </Layout>
66+<Layout>
77+ <section class="container">
88+ <aside>👋</aside>
99+ <h3>Bonjour!</h3>
1010+ <p>Je suis un étudiant en informatique 🇫🇷 Français.</p>
1111+ <div>
1212+ <p>
1313+ Je parle nativement 🇬🇧 <strong> Anglais </strong> et 🇫🇷 <strong>
1414+ Français
1515+ </strong>.
1616+ </p>
1717+ <p>
1818+ Some of my interests include:
1919+ <strong>
2020+ web development, infosec, cybersecurity and systems
2121+ administration.
2222+ </strong>
2323+ </p>
2424+ </div>
2525+ </section>
2626+2727+ <section class="container">
2828+ <aside>💻</aside>
2929+ <h3>Projets</h3>
3030+ <div>
3131+ <p>
3232+ I'm currently working on Karr, a federated carpooling platform
3333+ for businesses. You can find my other most interesting projects
3434+ just next door. I regularly take part in CTFs and other
3535+ cybersecurity events & conferences. Feel free to use my contact
3636+ details if you wish to get in touch. I also love playing the
3737+ drums and all sorts of instruments.
3838+ </p>
3939+ </div>
4040+ </section>
4141+4242+ <!-- {
4343+ Array.from({ length: 10 }, (_, i) => (
4444+ <div key={i}>
4545+ <h2>Project {i + 1}</h2>
4646+ <p>Description of project {i + 1}</p>
4747+ </div>
4848+ ))
4949+ } -->
5050+</Layout>