Compare commits
2 commits
f132b37f8c
...
c5c0a67510
Author | SHA1 | Date | |
---|---|---|---|
c5c0a67510 | |||
6d20e765f0 |
6 changed files with 108 additions and 2 deletions
|
@ -29,7 +29,7 @@ const specialResolvers: Record<string, (url: URL) => string> = {
|
|||
if (prefix[0] === "hl") {
|
||||
return 'hl.teasanctuary.ru';
|
||||
}
|
||||
if (prefix[0] === "git" || url.pathname.split('/')[1] == "git") {
|
||||
if (prefix[0] === "git") {
|
||||
return 'git.teasanctuary.ru';
|
||||
}
|
||||
return 'teasanctuary.ru';
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
<SocialButton class="w-60 shrink-0" href="https://github.com/TeaSanctuary/">
|
||||
GitHub
|
||||
</SocialButton>
|
||||
<SocialButton class="w-60 shrink-0" href="https://teasanctuary.ru/git">
|
||||
<SocialButton class="w-60 shrink-0" href="https://git.teasanctuary.ru">
|
||||
Наш Git
|
||||
</SocialButton>
|
||||
<SocialButton class="w-60 shrink-0" href="https://hl.teasanctuary.ru">
|
||||
|
@ -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