Feat: Add signup link to top right of container

This commit is contained in:
2025-10-02 08:25:08 -07:00
parent fe42168fcc
commit 9144609027

View File

@@ -9,35 +9,40 @@
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
</head> </head>
<body> <body>
<div class="relative min-h-screen bg-black text-white px-4 py-8 md:py-16"> <div class="min-h-screen bg-black text-white px-4 py-8 md:py-16">
<a href="/signup" class="absolute top-4 right-4 md:top-8 md:right-8 text-sm text-yellow-200/80 hover:text-yellow-200 border border-yellow-200/30 hover:border-yellow-200/50 px-3 py-1 rounded-md transition-all">
Sign Up
</a>
<div class="max-w-2xl mx-auto space-y-6"> <div class="max-w-2xl mx-auto space-y-6">
<!-- Subs Container --> <!-- Subs Container -->
<div class="border border-yellow-200/30 min-h-[60vh] p-4 md:p-6 space-y-2"> <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">
<a <a
href="https://free.speech.capital" href="https://free.speech.capital"
class="inline-block text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors" class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
> >
free.speech.capital free.speech.capital
</a> </a>
<br>
<a <a
href="https://artificial.speech.capital" href="https://artificial.speech.capital"
class="inline-block text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors" class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
> >
artificial.speech.capital artificial.speech.capital
</a> </a>
<br>
<a <a
href="https://dev.speech.capital" href="https://dev.speech.capital"
class="inline-block text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors" class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
> >
dev.speech.capital dev.speech.capital
</a> </a>
</div> </div>
<a
href="/signup"
class="text-yellow-200/80 hover:text-yellow-200 text-xs transition-colors"
>
Sign Up
</a>
</div>
</div>
</div> </div>
</div> </div>