Добавил временные страницы, чтобы заглушить ошибку 404 при сборке
All checks were successful
/ test (push) Successful in 3m40s

This commit is contained in:
Иван Кузьменко 2025-07-17 21:02:22 +03:00
parent 6d20e765f0
commit c5c0a67510
5 changed files with 106 additions and 0 deletions

View file

@ -137,6 +137,12 @@
пишите нам!
</div>
</section>
<section id="how-can-you-contact-us">
<h1>Как с вами связаться?</h1>
<div class="text-justify">
TODO: <SocialHyperlink href="/contact">контакты</SocialHyperlink>.
</div>
</section>
</div>
</section>

View file

@ -0,0 +1,25 @@
<script lang="ts">
import SocialButton from '$lib/components/SocialButton.svelte';
</script>
<svelte:head>
<title>Блог &mdash; Tea Sanctuary</title>
</svelte:head>
<section
class="flex shrink-0 flex-col items-center justify-center gap-5 overflow-hidden p-4 hero-background"
>
<div
class="flex flex-col flex-nowrap items-center justify-center gap-3 lg:flex-row lg:flex-nowrap"
>
<div
class="font-disket text-center text-4xl font-bold text-slate-50 [text-shadow:_0_0_15px_rgba(0,0,0,0.25)] sm:text-6xl md:text-8xl"
>
<h1>БЛОГ</h1>
</div>
</div>
</section>
<style>
@import "$src/app.css";
</style>

View file

@ -0,0 +1,25 @@
<script lang="ts">
import SocialButton from '$lib/components/SocialButton.svelte';
</script>
<svelte:head>
<title>Контакты &mdash; Tea Sanctuary</title>
</svelte:head>
<section
class="flex shrink-0 flex-col items-center justify-center gap-5 overflow-hidden p-4 hero-background"
>
<div
class="flex flex-col flex-nowrap items-center justify-center gap-3 lg:flex-row lg:flex-nowrap"
>
<div
class="font-disket text-center text-4xl font-bold text-slate-50 [text-shadow:_0_0_15px_rgba(0,0,0,0.25)] sm:text-6xl md:text-8xl"
>
<h1>КОНТАКТЫ</h1>
</div>
</div>
</section>
<style>
@import "$src/app.css";
</style>

View file

@ -0,0 +1,25 @@
<script lang="ts">
import SocialButton from '$lib/components/SocialButton.svelte';
</script>
<svelte:head>
<title>Проекты &mdash; Tea Sanctuary</title>
</svelte:head>
<section
class="flex shrink-0 flex-col items-center justify-center gap-5 overflow-hidden p-4 hero-background"
>
<div
class="flex flex-col flex-nowrap items-center justify-center gap-3 lg:flex-row lg:flex-nowrap"
>
<div
class="font-disket text-center text-4xl font-bold text-slate-50 [text-shadow:_0_0_15px_rgba(0,0,0,0.25)] sm:text-6xl md:text-8xl"
>
<h1>ПРОЕКТЫ</h1>
</div>
</div>
</section>
<style>
@import "$src/app.css";
</style>

View file

@ -0,0 +1,25 @@
<script lang="ts">
import SocialButton from '$lib/components/SocialButton.svelte';
</script>
<svelte:head>
<title>Команда &mdash; Tea Sanctuary</title>
</svelte:head>
<section
class="flex shrink-0 flex-col items-center justify-center gap-5 overflow-hidden p-4 hero-background"
>
<div
class="flex flex-col flex-nowrap items-center justify-center gap-3 lg:flex-row lg:flex-nowrap"
>
<div
class="font-disket text-center text-4xl font-bold text-slate-50 [text-shadow:_0_0_15px_rgba(0,0,0,0.25)] sm:text-6xl md:text-8xl"
>
<h1>НАША КОМАНДА</h1>
</div>
</div>
</section>
<style>
@import "$src/app.css";
</style>