Compare commits

...

2 commits

6 changed files with 108 additions and 2 deletions

View file

@ -29,7 +29,7 @@ const specialResolvers: Record<string, (url: URL) => string> = {
if (prefix[0] === "hl") { if (prefix[0] === "hl") {
return 'hl.teasanctuary.ru'; return 'hl.teasanctuary.ru';
} }
if (prefix[0] === "git" || url.pathname.split('/')[1] == "git") { if (prefix[0] === "git") {
return 'git.teasanctuary.ru'; return 'git.teasanctuary.ru';
} }
return 'teasanctuary.ru'; return 'teasanctuary.ru';

View file

@ -75,7 +75,7 @@
<SocialButton class="w-60 shrink-0" href="https://github.com/TeaSanctuary/"> <SocialButton class="w-60 shrink-0" href="https://github.com/TeaSanctuary/">
GitHub GitHub
</SocialButton> </SocialButton>
<SocialButton class="w-60 shrink-0" href="https://teasanctuary.ru/git"> <SocialButton class="w-60 shrink-0" href="https://git.teasanctuary.ru">
Наш Git Наш Git
</SocialButton> </SocialButton>
<SocialButton class="w-60 shrink-0" href="https://hl.teasanctuary.ru"> <SocialButton class="w-60 shrink-0" href="https://hl.teasanctuary.ru">
@ -137,6 +137,12 @@
пишите нам! пишите нам!
</div> </div>
</section> </section>
<section id="how-can-you-contact-us">
<h1>Как с вами связаться?</h1>
<div class="text-justify">
TODO: <SocialHyperlink href="/contact">контакты</SocialHyperlink>.
</div>
</section>
</div> </div>
</section> </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>