From 0cf4e73755d6aa19620404ec17f6d1263e5945bc Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Sat, 12 Jul 2025 22:35:46 +0300 Subject: [PATCH 1/6] =?UTF-8?q?=D0=A1=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86?= =?UTF-8?q?=D0=B0=20=D1=81=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=BE=D0=B9=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=BA=D0=B0=D0=B7=D1=8B=D0=B2=D0=B0=D0=B5=D1=82=20?= =?UTF-8?q?=D0=BA=D0=BE=D0=BD=D0=BA=D1=80=D0=B5=D1=82=D0=BD=D1=8B=D0=B9=20?= =?UTF-8?q?=D0=BA=D0=BE=D0=B4=20=D0=B2=20=D0=B7=D0=B0=D0=B3=D0=BE=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/+error.svelte | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte index 244bfd7..0f5e7ab 100644 --- a/src/routes/+error.svelte +++ b/src/routes/+error.svelte @@ -3,11 +3,11 @@ - 404 — Tea Sanctuary + {page.status} — Tea Sanctuary
@@ -25,4 +25,8 @@
-
\ No newline at end of file + + + \ No newline at end of file From b78c917ddfe50f70cb348c6326ffd006fd1a0805 Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Sat, 12 Jul 2025 22:37:43 +0300 Subject: [PATCH 2/6] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=20=D0=BF=D1=81=D0=B5=D0=B2=D0=B4=D0=BE=D0=BD=D0=B8=D0=BC=20?= =?UTF-8?q?=D0=B4=D0=BB=D1=8F=20=D0=BF=D0=B0=D0=BF=D0=BA=D0=B8=20`src/`,?= =?UTF-8?q?=20=D0=98=D0=B7=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=D1=81=D1=8F=20?= =?UTF-8?q?=D0=BE=D1=82=20=D0=BE=D1=82=D0=BD=D0=BE=D1=81=D0=B8=D1=82=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D1=8B=D1=85=20=D0=BF=D1=83=D1=82=D0=B5=D0=B9?= =?UTF-8?q?=20=D0=B2=20app.css,=20=D0=A1=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=20?= =?UTF-8?q?=D0=BA=D0=BB=D0=B0=D1=81=D1=81=20=D1=84=D0=BE=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=BE=D0=B1=D1=89=D0=B8=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.css | 6 +++++- src/routes/+page.svelte | 8 +------- svelte.config.js | 3 +++ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/app.css b/src/app.css index 5ca67e0..06dd7c0 100644 --- a/src/app.css +++ b/src/app.css @@ -1,6 +1,6 @@ @import "tailwindcss"; @plugin "@tailwindcss/typography"; -@config "../tailwind.config.ts"; +@config "$src/../tailwind.config.ts"; @font-face { font-family: 'Lineyka'; @@ -29,4 +29,8 @@ .no-x-scroll { max-width: 100%; overflow-x: hidden; +} + +.hero-background { + @apply bg-[url('/common/background-day.webp')] dark:bg-[url('/common/background-night.webp')] bg-cover bg-fixed; } \ No newline at end of file diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 67b2cf0..fbeead9 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -138,13 +138,7 @@ diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 5db3e07..ac454fb 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,20 +1,15 @@ @@ -25,16 +20,21 @@ Tea Sanctuary -
- -
+
+ +
+
+ +
-
-
-

- © 2025 Tea Sanctuary -

+
+
+

+ © 2025 Tea Sanctuary +

+
+
-
+
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index d2a2fa7..073d202 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -4,6 +4,10 @@ import { PUBLIC_TS_DISCORD } from '$env/static/public'; + + Tea Sanctuary + +
From fcdb7a7e4cd4c699dce6f17d50ff559f0015b961 Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Sun, 13 Jul 2025 10:33:25 +0300 Subject: [PATCH 6/6] =?UTF-8?q?=D0=A3=D0=BF=D1=80=D0=BE=D1=81=D1=82=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BB=D0=BE=D0=B3=D0=B8=D0=BA=D1=83=20=D0=B2=D1=8B?= =?UTF-8?q?=D1=87=D0=B8=D1=81=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=80=D0=B0?= =?UTF-8?q?=D0=B7=D0=BC=D0=B5=D1=80=D0=B0=20SocialHyperlink?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/components/SocialHyperlink.svelte | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/components/SocialHyperlink.svelte b/src/lib/components/SocialHyperlink.svelte index 93920e9..27efb4c 100644 --- a/src/lib/components/SocialHyperlink.svelte +++ b/src/lib/components/SocialHyperlink.svelte @@ -13,9 +13,7 @@