feat: add content to english index page

finxol.io 85599526 a0ec8290

verified
Changed files
+37 -10
src
pages
+37 -1
src/pages/en/index.astro
···
---
+
import "@/assets/styles/index.css";
import Layout from "@/layouts/Layout.astro";
---
-
<Layout> Hello My name is Colin, I build stuff </Layout>
+
<Layout>
+
<section class="container">
+
<aside>๐Ÿ‘‹</aside>
+
<h3>Hiya!</h3>
+
<p>I'm a computer science student ๐Ÿ‡ซ๐Ÿ‡ท French.</p>
+
<div>
+
<p>
+
I natively speak ๐Ÿ‡ฌ๐Ÿ‡ง <strong> English </strong> and ๐Ÿ‡ซ๐Ÿ‡ท <strong>
+
French
+
</strong>.
+
</p>
+
<p>
+
Some of my interests include:
+
<strong>
+
web development, infosec, cybersecurity and systems
+
administration.
+
</strong>
+
</p>
+
</div>
+
</section>
+
+
<section class="container">
+
<aside>๐Ÿ’ป</aside>
+
<h3>Projets</h3>
+
<div>
+
<p>
+
I'm currently working on Karr, a federated carpooling platform
+
for businesses. You can find my other most interesting projects
+
just next door. I regularly take part in CTFs and other
+
cybersecurity events & conferences. Feel free to use my contact
+
details if you wish to get in touch. I also love playing the
+
drums and all sorts of instruments.
+
</p>
+
</div>
+
</section>
+
</Layout>
-9
src/pages/fr/index.astro
···
</p>
</div>
</section>
-
-
<!-- {
-
Array.from({ length: 10 }, (_, i) => (
-
<div key={i}>
-
<h2>Project {i + 1}</h2>
-
<p>Description of project {i + 1}</p>
-
</div>
-
))
-
} -->
</Layout>