9779e4e133
Complete visual overhaul of all pages and components with generous spacing, bold typography, hover effects, gradient accents, and section differentiation. Hero features animated terminal mockup and gradient text. Cards use hover transforms with brand-colored shadows. CTAs use gradient backgrounds. All i18n keys, data structures, SEO meta, and composable logic preserved. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
223 B
Vue
10 lines
223 B
Vue
<template>
|
|
<div class="min-h-screen flex flex-col bg-white dark:bg-gray-950 text-gray-900 dark:text-gray-100">
|
|
<AppHeader />
|
|
<main class="flex-1">
|
|
<slot />
|
|
</main>
|
|
<AppFooter />
|
|
</div>
|
|
</template>
|