21 lines
No EOL
553 B
Svelte
21 lines
No EOL
553 B
Svelte
<script lang="ts">
|
|
import SocialButton from '$lib/components/SocialButton.svelte';
|
|
</script>
|
|
|
|
<section
|
|
class="flex shrink-0 flex-col items-center justify-center gap-5 overflow-hidden p-4 hero"
|
|
>
|
|
<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> |