basically just your average cs student slop site schtormm.nl
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix hydration error + add descriptions

+43 -31
+43 -31
app/cv/page.tsx
··· 1 1 export default function Home() { 2 2 return ( 3 - <div className="min-h-[100vh] bg-gray-50 dark:bg-gray-950"> 4 - <div className="pt-10 flex flex-col items-center justify-center gap-10"> 5 - <div> 6 - <h1 className="text-3xl text-center dark:text-white">Experience</h1> 7 - <div className="w-sm flex flex-col items-center gap-4"> 8 - <h2 className=" font-bold dark:text-white"> 9 - September 2024 - January 2025 10 - </h2> 11 - <div className="flex items-center gap-2"> 12 - <div className="border-l-2 border-purple-500 h-12 my-2"></div> 13 - <div className="flex flex-col"> 14 - <h1 className="dark:text-white text-xl"> 15 - <a href="https://stager.co">Stager</a> 16 - </h1> 17 - <article className="dark:text-white text-sm"> 18 - Dutch SaaS company for event planning, ticket sales, marketing 19 - and more 20 - </article> 3 + <main> 4 + <div className="min-h-[100vh] bg-gray-50 dark:bg-gray-950"> 5 + <div className="pt-10 flex flex-col items-center justify-center gap-10"> 6 + <div> 7 + <h1 className="text-3xl text-center dark:text-white">Experience</h1> 8 + <div className="w-sm flex flex-col items-center gap-4"> 9 + <h2 className=" font-bold dark:text-white"> 10 + September 2024 - January 2025 11 + </h2> 12 + <div className="flex items-center gap-2"> 13 + <div className="border-l-2 border-purple-500 h-12 my-2"></div> 14 + <div className="flex flex-col"> 15 + <h1 className="dark:text-white text-xl"> 16 + <a href="https://stager.co">Stager</a> 17 + </h1> 18 + <article className="dark:text-white text-sm"> 19 + Dutch SaaS company for event planning, ticket sales, 20 + marketing and more 21 + </article> 22 + </div> 21 23 </div> 24 + <p className="wp dark:text-white text-wrap"> 25 + Worked on a project refactoring and redesigning the customizable 26 + newsletter unsubscription page for the company's clients. Also 27 + worked on refactoring various other parts of the application to 28 + bring them up to date with current style and structure. 29 + </p> 22 30 </div> 23 - <p className="wp dark:text-white text-wrap"> 24 - Worked on a project refactoring and redesigning the customizable 25 - newsletter unsubscription page for the company's clients. 26 - </p> 31 + </div> 32 + <div> 33 + <h1 className="text-3xl text-center dark:text-white">Projects</h1> 34 + <div className="w-sm flex flex-col gap-4"> 35 + <h1 className="dark:text-white text-xl">Project D</h1> 36 + <article className="dark:text-white text-sm"> 37 + Room booking app prototype to showcase to{" "} 38 + <a href="https://eneco.nl">Eneco </a> 39 + as part of the "Project D" course 40 + </article> 41 + <p className="dark:text-white text-wrap"> 42 + Worked together with four other students to create a prototype 43 + for a meeting room booking app using React Native, Expo and 44 + various other technologies such as tRPC and Prisma. 45 + </p> 46 + </div> 27 47 </div> 28 48 </div> 29 - <h1 className="text-3xl text-center dark:text-white">Projects</h1> 30 - <div className="w-sm"> 31 - <h1 className="dark:text-white text-xl">Project D</h1> 32 - <article className="dark:text-white text-sm"> 33 - Part of the "Project D" course, to showcase to{" "} 34 - <a href="https://eneco.nl">Eneco</a> 35 - </article> 36 - </div> 37 49 </div> 38 - </div> 50 + </main> 39 51 ); 40 52 }