From 6de17570c9ab1968e4e727fd1b037e8a2a6264c2 Mon Sep 17 00:00:00 2001 From: denizk0461 Date: Wed, 10 Sep 2025 13:15:37 +0200 Subject: [PATCH] added cookie notice page and removed some garden things --- src/lib/banner-title-alt.svelte | 46 ++++++++++++++++++-------- src/lib/footer.svelte | 1 + src/routes/garden/+page.svelte | 15 +-------- src/routes/garden/recipes/+page.svelte | 20 ----------- src/routes/privacy/+page.svelte | 20 +++++++++++ src/routes/quotes.ts | 15 +++++++++ 6 files changed, 69 insertions(+), 48 deletions(-) delete mode 100644 src/routes/garden/recipes/+page.svelte create mode 100644 src/routes/privacy/+page.svelte diff --git a/src/lib/banner-title-alt.svelte b/src/lib/banner-title-alt.svelte index c6028bc..63d67ad 100644 --- a/src/lib/banner-title-alt.svelte +++ b/src/lib/banner-title-alt.svelte @@ -26,9 +26,9 @@
{#if pixelated} - {bannerAlt} + {bannerAlt} {:else} - {bannerAlt} + {bannerAlt} {/if}
@@ -38,18 +38,26 @@
{:else} -
-
- {#if pixelated} - {bannerAlt} - {:else} - {bannerAlt} - {/if} -
-
- {@render titles({title, subtitle, date})} -
-
+ {#if banner} +
+
+ {#if pixelated} + {bannerAlt} + {:else} + {bannerAlt} + {/if} +
+
+ {@render titles({title, subtitle, date})} +
+
+ {:else} +
+
+ {@render titles({title, subtitle, date})} +
+
+ {/if} {/if}
@@ -80,6 +88,12 @@ margin-right: auto; } + .subcontainer-textonly { + height: fit-content !important; + padding-top: 48px; + padding-bottom: 48px; + } + .img-container { flex-grow: 1; width: 50%; @@ -110,6 +124,10 @@ margin: auto 24px; } + .text-container-fullwidth { + width: 100% !important; + } + .container img { height: 100%; width: 100%; diff --git a/src/lib/footer.svelte b/src/lib/footer.svelte index bce918e..356f23a 100644 --- a/src/lib/footer.svelte +++ b/src/lib/footer.svelte @@ -30,6 +30,7 @@
diff --git a/src/routes/garden/+page.svelte b/src/routes/garden/+page.svelte index e0d874d..27c9301 100644 --- a/src/routes/garden/+page.svelte +++ b/src/routes/garden/+page.svelte @@ -1,18 +1,6 @@ @@ -26,6 +14,5 @@ /> -

work in progress! but some subpages already exist:

- +

work in progress! and due to be remade.

diff --git a/src/routes/garden/recipes/+page.svelte b/src/routes/garden/recipes/+page.svelte deleted file mode 100644 index 0fb196d..0000000 --- a/src/routes/garden/recipes/+page.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - - - Recipes | denizk0461 - - - - - -

This is the future site for my recipes!

- -

All my recipes are vegan, require not too many steps and ingredients, and are relatively inexpensive, because I don't have a lot of money lol

-
diff --git a/src/routes/privacy/+page.svelte b/src/routes/privacy/+page.svelte new file mode 100644 index 0000000..6b10ef9 --- /dev/null +++ b/src/routes/privacy/+page.svelte @@ -0,0 +1,20 @@ + + + + Privacy & Cookies | denizk0461 + + + + + +

This page uses no cookies as of now. No data will be stored on your device while browsing this website. No trackers are used either – no analytics, not even a visit counter of any kind. Not by a third-party, and currently, none I built myself either.

+ +

The Godot and Unity projects on the apps.denizk0461.dev subdomain may cache compiled shaders on your device, I'm not sure. These files would only be used by your GPU to render visual effects for the game they were compiled for.

+ +

Last updated: 2025-09-10

+
diff --git a/src/routes/quotes.ts b/src/routes/quotes.ts index 72d0a41..9882682 100644 --- a/src/routes/quotes.ts +++ b/src/routes/quotes.ts @@ -35,4 +35,19 @@ export let quotes: Quote[] = [ author: "Midnight Kids & klei", source: "Find Your Way", }, + { + content: "If you see me falling I'll just see you looking up", + author: "Jaron", + source: "ICARUS", + }, + { + content: "Let me simmer down and cover up for I am cooking broth; it don't take a genius to achieve it, it just takes some sauce", + author: "Jaron", + source: "PIECES", + }, + { + content: "When I die, I hope I'm buried in a forest; that is if any of it's left", + author: "brakence", + source: "5g", + }, ]; \ No newline at end of file