philippurbschat.de/philcore/views/home.php

24 lines
No EOL
1 KiB
PHP

<?php require_once __DIR__ . '/inc/header.php'; ?>
<div class="max-w-3xl w-full text-center space-y-8 mt-12 md:mt-24 mx-auto">
<div class="text-8xl hover:rotate-12 transition-transform cursor-default inline-block drop-shadow-2xl">
🍕
</div>
<h1 class="text-5xl md:text-7xl font-extrabold text-transparent bg-clip-text bg-gradient-to-r from-amber-400 to-rose-500 tracking-tight pb-2">
Hallo, <?= htmlspecialchars($name ?? 'Gast') ?>.
</h1>
<p class="text-xl text-slate-400 max-w-2xl mx-auto font-light mt-6">
Das Fundament steht. Zeit, etwas Großartiges zu bauen.
</p>
<div class="pt-10">
<a href="<?= Config::get('BASE_URL', '/') ?>admin" class="inline-flex items-center gap-3 px-8 py-4 bg-gradient-to-r from-amber-500 to-rose-500 text-slate-900 font-bold rounded-2xl transition-all shadow-lg hover:scale-105 active:scale-95">
<span>🚀</span>
<span>Zum Admin-Bereich</span>
</a>
</div>
</div>
<?php require_once __DIR__ . '/inc/footer.php'; ?>