finish page
All checks were successful
Push to cloudflare pages / deploy (push) Successful in 46s

This commit is contained in:
Lara 2025-01-25 17:46:08 +02:00
parent b8e14c8370
commit 11cedc0abd
12 changed files with 584 additions and 186 deletions

View file

@ -1 +1,16 @@
@use 'tailwindcss';
@use "tailwindcss/base";
@use "tailwindcss/components";
@use "tailwindcss/utilities";
@import url('https://fonts.bunny.net/css?family=inter:400');
:root {
font-family: 'Inter', sans-serif;
}
body {
@apply bg-white text-black dark:bg-zinc-900 dark:text-white text-pretty;
}
.emoji {
@apply w-6 inline-block;
}

View file

@ -0,0 +1,16 @@
<script lang="ts">
</script>
<footer class="footer">
<p>Logo art by <a class="hover:text-sky-500 hover:underline text-gray-400" href="https://bsky.app/profile/did:plc:sqwkomf6gkzbhnctiqexepzx">Aegiscarr</a></p>
<p>&copy; {new Date().getFullYear()} Lara The Protogen. All rights reserved.</p>
</footer>
<style lang="scss">
.footer {
@apply w-full text-center p-4 text-white;
position: absolute;
bottom: 0;
z-index: 10;
}
</style>

BIN
src/lib/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 KiB

View file

@ -2,9 +2,29 @@
import { i18n } from '$lib/i18n';
import { ParaglideJS } from '@inlang/paraglide-sveltekit';
import '../app.scss';
import Footer from '$lib/components/Footer.svelte';
let { children } = $props();
</script>
<ParaglideJS {i18n}>
{@render children()}
<div class="background">
<article class="content">
{@render children()}
</article>
<Footer />
</div>
</ParaglideJS>
<style lang="scss">
.background {
@apply relative w-full h-screen bg-cover bg-center bg-no-repeat;
background-image: url('/backdrop-logo.png');
background-size: 40%;
}
.content {
@apply absolute inset-0 flex flex-col justify-center p-72 items-center backdrop-blur-lg text-center;
}
</style>

View file

@ -1,2 +1,16 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
<script lang="ts">
import { formatDistanceToNow } from 'date-fns';
const prevDate = new Date(2023, 7, 5)
</script>
<h1 class="text-4xl font-bold">protogen.social</h1>
<p>I intend to make protogen.social return sometime in the future, if i'm ever able to recover it's data</p>
<p>The server used to host it is currently down and frankly, I don't know when it might be coming back, I do hope it will tho as i've been damn proud of the mastodon instance i've been running for <span class="font-bold">{formatDistanceToNow(prevDate)}</span> now</p>
<p>I did have a local backup of it that was a few months old at the time of writing this (that being 1/25/2025 @ 17:34) but my linux ssd died, but hey, at least it got a replacement approved, but i'm never getting that data on it back</p>
<p>I intend to get the data back and making protogen.social return</p>
<style lang="scss">
</style>