21 lines
643 B
Svelte
21 lines
643 B
Svelte
<script lang="ts">
|
|
import WarningBlock from '$lib/components/WarningBlock.svelte';
|
|
</script>
|
|
|
|
<section class="hero flex shrink-0 flex-col items-center justify-center gap-5 overflow-hidden p-4">
|
|
<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>
|
|
|
|
<WarningBlock>Страница находится в разработке!</WarningBlock>
|
|
|
|
<style>
|
|
@import '$src/app.css';
|
|
</style>
|