Spaces:
Build error
Build error
File size: 1,244 Bytes
a3ae6ee cb6af22 bd8c7a0 a3ae6ee cb6af22 663005a cb6af22 a3ae6ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
<script lang="ts">
import { PUBLIC_DISABLE_INTRO_TILES, PUBLIC_MODEL_NAME, PUBLIC_MODEL_TAGLINE } from '$env/static/public';
export let title: string = 'Joi 20B Instruct';
</script>
<div class="grid grid-cols-3 gap-3 my-auto">
<div class="col-span-3 text-center mb-10">
<h1 class="text-3xl font-bold mb-1.5">{PUBLIC_MODEL_NAME || title}</h1>
<p class="text-lg text-gray-500">
{#if PUBLIC_MODEL_TAGLINE}
{@html PUBLIC_MODEL_TAGLINE}
{:else}
Lorem ipsum dolor sit.
{/if}
</p>
</div>
{#if PUBLIC_DISABLE_INTRO_TILES !== "true"}
<div class="bg-gray-50 dark:bg-gray-700 rounded-xl text-gray-500 dark:text-gray-400 p-4">
Create
</div>
<div class="bg-gray-50 dark:bg-gray-700 rounded-xl text-gray-500 dark:text-gray-400 p-4">
Discover
</div>
<div class="bg-gray-50 dark:bg-gray-700 rounded-xl text-gray-500 dark:text-gray-400 p-4">
Overcome
</div>
<div class="bg-gray-50 dark:bg-gray-700 rounded-xl text-gray-500 dark:text-gray-400 p-4">
Create
</div>
<div class="bg-gray-50 dark:bg-gray-700 rounded-xl text-gray-500 dark:text-gray-400 p-4">
Discover
</div>
<div class="bg-gray-50 dark:bg-gray-700 rounded-xl text-gray-500 dark:text-gray-400 p-4">
Overcome
</div>
{/if}
</div>
|