Добавил временные страницы, чтобы заглушить ошибку 404 при сборке
All checks were successful
/ test (push) Successful in 3m40s
All checks were successful
/ test (push) Successful in 3m40s
This commit is contained in:
parent
6d20e765f0
commit
c5c0a67510
5 changed files with 106 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
25
src/routes/blog/+page.svelte
Normal file
25
src/routes/blog/+page.svelte
Normal file
|
@ -0,0 +1,25 @@
|
|||
<script lang="ts">
|
||||
import SocialButton from '$lib/components/SocialButton.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Блог — 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>
|
25
src/routes/contact/+page.svelte
Normal file
25
src/routes/contact/+page.svelte
Normal file
|
@ -0,0 +1,25 @@
|
|||
<script lang="ts">
|
||||
import SocialButton from '$lib/components/SocialButton.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Контакты — 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>
|
25
src/routes/projects/+page.svelte
Normal file
25
src/routes/projects/+page.svelte
Normal file
|
@ -0,0 +1,25 @@
|
|||
<script lang="ts">
|
||||
import SocialButton from '$lib/components/SocialButton.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Проекты — 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>
|
25
src/routes/team/+page.svelte
Normal file
25
src/routes/team/+page.svelte
Normal file
|
@ -0,0 +1,25 @@
|
|||
<script lang="ts">
|
||||
import SocialButton from '$lib/components/SocialButton.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Команда — 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>
|
Loading…
Add table
Add a link
Reference in a new issue