Feat: Move signup icon to top right above box

This commit is contained in:
2025-10-02 08:26:59 -07:00
parent 9144609027
commit a2fd6902e6

View File

@@ -12,37 +12,38 @@
<div class="min-h-screen bg-black text-white px-4 py-8 md:py-16">
<div class="max-w-2xl mx-auto space-y-6">
<div class="flex justify-end">
<a
href="/signup"
class="text-yellow-200/80 hover:text-yellow-200 transition-colors"
>
<i data-lucide="user-plus" class="w-4 h-4"></i>
</a>
</div>
<!-- Subs Container -->
<div class="border border-yellow-200/30 min-h-[60vh] p-4 md:p-6">
<div class="flex justify-between">
<div class="flex flex-col">
<div class="border border-yellow-200/30 min-h-[60vh] p-4 md:p-6 space-y-2">
<a
href="https://free.speech.capital"
class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
class="inline-block text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
>
free.speech.capital
</a>
<br>
<a
href="https://artificial.speech.capital"
class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
class="inline-block text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
>
artificial.speech.capital
</a>
<br>
<a
href="https://dev.speech.capital"
class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
class="inline-block text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
>
dev.speech.capital
</a>
</div>
<a
href="/signup"
class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
>
Sign Up
</a>
</div>
</div>
</div>
</div>