21 lines
822 B
Svelte
21 lines
822 B
Svelte
|
|
<script>
|
||
|
|
import Banner2 from "$lib/banner2.svelte";
|
||
|
|
import Content from "$lib/viewport/content.svelte";
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<svelte:head>
|
||
|
|
<title>Small Projects | denizk0461</title>
|
||
|
|
</svelte:head>
|
||
|
|
|
||
|
|
<Content>
|
||
|
|
<Banner2
|
||
|
|
title="My Small Projects"
|
||
|
|
subtitle="the ones that don't get the spotlight"
|
||
|
|
banner=""
|
||
|
|
bannerAlt="" />
|
||
|
|
|
||
|
|
<p>Not all of my projects are big, month-long endeavours. Some of them are short and sweet. Sometimes, they're even more rewarding than the bigger ones, because you end up with a finished 'thing' much quicker! And because I like my small projects just as much as my bigger ones, I figured it would be nice to give them a space on my website as well.</p>
|
||
|
|
|
||
|
|
<p>Or at least I would... if you had come here a bit later. There's nothing here yet.</p>
|
||
|
|
|
||
|
|
</Content>
|