website/src/routes/+page.svelte

92 lines
2.5 KiB
Svelte
Raw Normal View History

2024-08-15 00:43:18 +03:00
<script>
2024-09-23 13:40:48 +03:00
import { PUBLIC_BASE_URL } from '$env/static/public';
2024-08-15 00:43:18 +03:00
import Window from '../components/window.svelte';
</script>
<div class="flex flex-col md:flex-row gap-y-4 lg:gap-y-0 md:h-full">
<div class="flex flex-col gap-y-2 lg:gap-y-0">
2024-09-23 06:43:04 +03:00
<Window title="readme?" iconUri="/icons/question.png">
2024-09-23 13:40:48 +03:00
<div class="prose prose-ralsei prose-img:m-0 leading-6 h-card">
<p>
2024-09-23 06:43:04 +03:00
hi there <img
class="relative inline h-6 animate-squiggle pb-1 pr-1"
src="/wavey.gif"
alt="wavey"
title="hi :33"
2024-09-23 13:40:48 +03:00
/><i>i'm <a class="p-name" href={PUBLIC_BASE_URL}>dusk</a>!</i>
2024-09-23 06:43:04 +03:00
</p>
<p>
and this is my personal spot where i plan to put everything that i do on (<i
>if i don't forget to...</i
>)
</p>
<p>not much else to say, hopefully will add more text here one day :></p>
<p>website very much in progress still !!!</p>
</div>
</Window>
2024-09-23 06:43:04 +03:00
<div class="grow" />
<Window title="latest stuff">
<div class="prose prose-ralsei prose-img:m-0 leading-6">
2024-09-23 06:43:04 +03:00
<p>
worked on a game for a jam!! check it out at <a href="https://manonox.itch.io/fish-well"
>it's itch.io page</a
>!
</p>
<img
src="https://img.itch.zone/aW1hZ2UvMjkxNjQzOC8xNzQ2MDY2Mi5wbmc=/original/%2BIb5Vf.png"
alt="fish well gameplay screenshot"
/>
</div>
</Window>
</div>
<div class="hidden md:block md:grow" />
2024-09-23 06:43:04 +03:00
<Window title="contacts!" iconUri="/icons/contact.png">
2024-08-15 00:43:18 +03:00
<div class="prose prose-ralsei leading-6">
<ul>
<li>discord: yusdacra</li>
<li>
e-mail:
2024-09-23 05:46:19 +03:00
<a href="mailto:y.bera003.06@pm.me" rel="me">y.bera003.06@pm.me</a>
2024-08-15 00:43:18 +03:00
</li>
</ul>
<h3>development</h3>
<ul>
<li>
github:
2024-09-23 05:46:19 +03:00
<a href="https://github.com/yusdacra" rel="me">@yusdacra</a>
2024-08-15 00:43:18 +03:00
</li>
<li>
gitlab:
<a href="https://gitlab.com/yusdacra">@yusdacra</a>
</li>
<li>
my gitea:
<a href="https://git.gaze.systems/dusk">@dusk</a>
</li>
</ul>
<h3>socials</h3>
<ul>
<li>
bluesky:
<a href="https://bsky.app/profile/gaze.systems">@gaze.systems</a>
</li>
<li>
misskey.art:
<a href="https://misskey.art/@yusdacra">@yusdacra</a>
</li>
</ul>
</div>
</Window>
</div>
<div class="hidden motion-reduce:md:block absolute max-w-[40ch] bottom-[10vh] right-[8vw]">
2024-09-23 06:43:04 +03:00
<Window title=":(" iconUri="/icons/warning.png">
2024-08-15 00:43:18 +03:00
<div class="prose prose-ralsei leading-6">
2024-09-23 06:43:04 +03:00
<p>
you have <code>prefers-reduced-motion</code> enabled so i disabled (most of) the animations!
</p>
2024-08-15 00:43:18 +03:00
<p class="text-xs italic">they looked nice i think....</p>
</div>
</Window>
</div>