fakecheck

This commit is contained in:
2025-11-24 01:05:41 +01:00
parent f3cd26ba89
commit 09ab7bad59
5 changed files with 43 additions and 26 deletions

View File

@@ -18,8 +18,9 @@ $planLabel = [
'enterprise' => 'Enterprise',
][$plan] ?? ucfirst($plan ?: 'Free');
?>
<section id="dashboard" class="border-t border-brand-border/70 bg-brand-primarySoft/10">
<div class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8 py-16 sm:py-20 space-y-8">
<section id="dashboard" class="section-band section-band--soft border-t border-brand-border/60 py-16 sm:py-20">
<div class="px-4 sm:px-6 lg:px-8">
<div class="section-shell space-y-10">
<!-- Begrüßung & Plan -->
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-6">
@@ -27,7 +28,7 @@ $planLabel = [
<p class="text-xs font-heading font-semibold tracking-[0.3em] uppercase text-brand-primary" data-i18n="dashboard_kicker">
Dashboard
</p>
<h1 class="font-heading text-2xl sm:text-3xl font-bold text-white" data-i18n="dashboard_title">
<h1 class="font-heading text-2xl sm:text-3xl font-bold text-brand-text" data-i18n="dashboard_title">
Willkommen<?= $firstName ? ', ' . htmlspecialchars($firstName) : '' ?>!
</h1>
<p class="text-sm sm:text-base text-brand-muted max-w-2xl" data-i18n="dashboard_intro">
@@ -51,8 +52,8 @@ $planLabel = [
<div class="grid gap-6 md:grid-cols-3">
<!-- Letzte Tests -->
<div class="rounded-xl2 border border-brand-border bg-brand-surface/80 p-5 shadow-soft flex flex-col">
<h2 class="font-heading text-lg font-semibold text-white mb-2" data-i18n="dashboard_card_tests_title">
<div class="card-frame card-frame--soft flex flex-col">
<h2 class="font-heading text-lg font-semibold text-brand-text mb-2" data-i18n="dashboard_card_tests_title">
Letzte Tests
</h2>
<p class="text-sm text-brand-muted mb-4" data-i18n="dashboard_card_tests_text">
@@ -67,8 +68,8 @@ $planLabel = [
</div>
<!-- Geräte / USB-Sticks -->
<div class="rounded-xl2 border border-brand-border bg-brand-surface/80 p-5 shadow-soft flex flex-col">
<h2 class="font-heading text-lg font-semibold text-white mb-2" data-i18n="dashboard_card_devices_title">
<div class="card-frame card-frame--soft flex flex-col">
<h2 class="font-heading text-lg font-semibold text-brand-text mb-2" data-i18n="dashboard_card_devices_title">
Deine USB-Geräte
</h2>
<p class="text-sm text-brand-muted mb-4" data-i18n="dashboard_card_devices_text">
@@ -83,8 +84,8 @@ $planLabel = [
</div>
<!-- Pro-Modus / Nächste Schritte -->
<div class="rounded-xl2 border border-brand-border bg-brand-surface/80 p-5 shadow-soft flex flex-col">
<h2 class="font-heading text-lg font-semibold text-white mb-2" data-i18n="dashboard_card_next_title">
<div class="card-frame flex flex-col">
<h2 class="font-heading text-lg font-semibold text-brand-text mb-2" data-i18n="dashboard_card_next_title">
Nächste Schritte
</h2>
<p class="text-sm text-brand-muted mb-4" data-i18n="dashboard_card_next_text">
@@ -104,5 +105,6 @@ $planLabel = [
</a>
</div>
</div>
</div>
</div>
</section>