All checks were successful
Validate / Hassfest (push) Successful in 3s
New teal-accent color system, DM Sans + JetBrains Mono typography, glow effects, animated gradient login page, animated dashboard counters with gradient-border stat cards, event timeline, sidebar with active glow indicators, and polished components (modals, cards, snackbar). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
587 B
Svelte
22 lines
587 B
Svelte
<script lang="ts">
|
|
let { title, description = '', children } = $props<{
|
|
title: string;
|
|
description?: string;
|
|
children?: import('svelte').Snippet;
|
|
}>();
|
|
</script>
|
|
|
|
<div class="flex items-center justify-between mb-8">
|
|
<div class="animate-fade-slide-in">
|
|
<h2 class="text-2xl font-semibold tracking-tight">{title}</h2>
|
|
{#if description}
|
|
<p class="text-sm mt-1.5" style="color: var(--color-muted-foreground);">{description}</p>
|
|
{/if}
|
|
</div>
|
|
{#if children}
|
|
<div class="animate-fade-slide-in" style="animation-delay: 60ms;">
|
|
{@render children()}
|
|
</div>
|
|
{/if}
|
|
</div>
|