Personal site staging.colinozanne.co.uk
portfolio astro

feat: add content to english index page

finxol.io 85599526 a0ec8290

verified
+37 -10
+37 -1
src/pages/en/index.astro
··· 1 1 --- 2 + import "@/assets/styles/index.css"; 2 3 import Layout from "@/layouts/Layout.astro"; 3 4 --- 4 5 5 - <Layout> Hello My name is Colin, I build stuff </Layout> 6 + <Layout> 7 + <section class="container"> 8 + <aside>๐Ÿ‘‹</aside> 9 + <h3>Hiya!</h3> 10 + <p>I'm a computer science student ๐Ÿ‡ซ๐Ÿ‡ท French.</p> 11 + <div> 12 + <p> 13 + I natively speak ๐Ÿ‡ฌ๐Ÿ‡ง <strong> English </strong> and ๐Ÿ‡ซ๐Ÿ‡ท <strong> 14 + French 15 + </strong>. 16 + </p> 17 + <p> 18 + Some of my interests include: 19 + <strong> 20 + web development, infosec, cybersecurity and systems 21 + administration. 22 + </strong> 23 + </p> 24 + </div> 25 + </section> 26 + 27 + <section class="container"> 28 + <aside>๐Ÿ’ป</aside> 29 + <h3>Projets</h3> 30 + <div> 31 + <p> 32 + I'm currently working on Karr, a federated carpooling platform 33 + for businesses. You can find my other most interesting projects 34 + just next door. I regularly take part in CTFs and other 35 + cybersecurity events & conferences. Feel free to use my contact 36 + details if you wish to get in touch. I also love playing the 37 + drums and all sorts of instruments. 38 + </p> 39 + </div> 40 + </section> 41 + </Layout>
-9
src/pages/fr/index.astro
··· 38 38 </p> 39 39 </div> 40 40 </section> 41 - 42 - <!-- { 43 - Array.from({ length: 10 }, (_, i) => ( 44 - <div key={i}> 45 - <h2>Project {i + 1}</h2> 46 - <p>Description of project {i + 1}</p> 47 - </div> 48 - )) 49 - } --> 50 41 </Layout>