Dockerize new sveltekit app

This commit is contained in:
2024-09-26 15:07:17 +02:00
parent ff38392aea
commit d1006742ea
58 changed files with 6355 additions and 69 deletions

34
packages/web/app/page.tsx Normal file
View File

@@ -0,0 +1,34 @@
export default async function Index() {
return (
<div>
<div className="flex items-center place-content-center gap-10 py-10">
<img src="stan.jpg" alt="Stan Runge" className="rounded-xl size-64" />
<div className="text-center">
<h1 className="text-5xl my-3">Stan Runge</h1>
<a href="mailto:stan@stanrunge.dev">stan@stanrunge.dev</a>
<p>The Hague, Netherlands</p>
</div>
</div>
<div className="text-center my-10">
<h2 className="text-3xl">Experience</h2>
<b>Founder</b>
<p>Vash Software</p>
</div>
<div className="text-center my-10">
<b>Software Engineer Intern</b>
<p>H5mag</p>
</div>
<div className="text-center my-10">
<b>Junior IT Specialist</b>
<p>Finance Plus</p>
</div>
<div className="text-center my-10">
<h2 className="text-3xl">Education</h2>
<b>The Hague University of Applied Sciences</b>
<p>BSc Software Engineering</p>
<p>Minor: Deep Learning</p>
</div>
</div>
);
}