website/website/index.html
sophie 6af6c3ea79
All checks were successful
/ test (push) Successful in 12s
new website design
2024-07-23 22:53:15 +03:00

83 lines
No EOL
3.4 KiB
HTML

__TEMPLATE_HEAD__
<script type="module" src="scripts/blog.js"></script>
<script>
window.addEventListener("load", () => {
const stickers = document.getElementById("stickers");
if (!stickers) return;
for (const sticker of __STICKERS__) {
const img = document.createElement("img");
img.src = "assets/stickers/" + sticker;
stickers.appendChild(img);
}
})
</script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body class="repeating-bg">
<div class="order">
<div class="paper one">
<h1><span class="emoji">☹️☹️☹️</span>.ovh</h1>
<p>I'm Latvian, 17. My name's Sophie <small>meows a lot</small>. I love listening to music.</p>
<p>I love to play games with peeps! My favorite games recently have been Minecraft and Stardew Valley! DM me
if you wanna play with me ^w^</p>
<p>
DNI:
<br>
Interact: Any person ever
</p>
<p>Contact me at <a href="https://matrix.to/#/@yourfriend:bark.lgbt">matrix</a>, <a
href="https://discord.com/users/845374523263811614">discord</a>, <a
href="https://github.com/fucksophie">github (view projects here)</a>, <a
href="https://git.sad.ovh/sophie">sadgit</a>, or <a
href="https://bark.lgbt/@yourfriend">mastodon.</a>
</p>
<p>E-mail: (run in JS) <span class="e-mail">new TextDecoder().decode(new Uint8Array([115, 111, 102, 105,
106, 97, 64,
100, 117, 99, 107, 46, 99, 111, 109]))</span></p>
<a href="assets/key.txt">Signing PGP key downloadable here.</a>
</div>
<div class="paper two">
<h1>donations</h1>
<ul>
<li>BTC <strong>bc1q83jdukjn4a2qm0rmn9tqcfkcq60la22lqy2shx</strong>
</li>
<li>ETH/BSC/USDT/USDC (send via BSC) <strong>0xc691cd8950Fdf96Faa2aCA1CA9b4B3Fd5B2a44BB</strong>
</li>
<li>SOL <strong>79NKoiXaPzbwbsD5MFKKwmoeEPKtTsoQFfx64MHmULF7</strong>
</li>
<li>XMR
<strong>
42iW3icQrybKYieQNSrm76dXetuXD6HaxZDijajXkge7GTSKVG4NefxBj3mbWudpY62dxRTihm4beJgy36X8xFKCTWpVAjS
</strong>
</li>
<li>
<a href="https://ko-fi.com/sophskofi">Ko-fi</a>, Paypal (DM or Email me)
</li>
</ul>
</div>
<div class="paper four">
<h1>Skills</h1>
<!--replace this with Code::Stats once I've actually gotten some time on there-->
<ul>
<li>Around 8 years of near constant JS/TS development. Full-Stack, including discord bots.</li>
<li>3 years of TSX</li>
<li>SQL and PostgreSQL(pSQL) since I started development.</li>
<li>Lots of webdev build tools and more. <a href="https://git.sad.ovh/sophie/website">This site uses my
own build tools.</a></li>
<li>9 years of Java development. Mostly Minecraft plugins and MC related projects.</li>
</ul>
</div>
<div class="paper blog" id="root"></div>
<div class="paper three" id="stickers"></div>
</div>
</body>
</html>