completionId: cgen-698478f874c3453888d41b1723080c59

cgen-698478f874c3453888d41b1723080c59
This commit is contained in:
Builder.io 2025-11-06 20:00:14 +00:00
parent e713a21ed4
commit bdb7b4181e
2 changed files with 16 additions and 9 deletions

View file

@ -49,17 +49,18 @@ export default function DevLink() {
<Button
size="lg"
className="bg-cyan-400 text-black shadow-[0_0_30px_rgba(6,182,212,0.35)] transition hover:bg-cyan-300"
onClick={() => navigate("/dev-link/waitlist")}
>
<Users className="mr-2 h-5 w-5" />
Join Dev-Link
Join Waitlist
</Button>
<Button
size="lg"
variant="outline"
className="border-cyan-400/60 text-cyan-300 hover:bg-cyan-500/10"
onClick={() => navigate("/dev-link/profiles")}
onClick={() => navigate("/dev-link/browseprofiles")}
>
Waitlist
Browse Profiles
</Button>
</div>
</div>

View file

@ -28,12 +28,18 @@ export default function DevLinkProfiles() {
Back to Dev-Link
</Button>
<h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-4">
Dev-Link Waitlist
</h1>
<p className="text-lg text-cyan-100/80 max-w-2xl">
Join the professional network for Roblox developers. Sign up for early access!
</p>
<div className="flex items-center justify-between mb-4">
<div>
<h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-2">
{typeof window !== 'undefined' && window.location.pathname.includes('/waitlist') ? 'Dev-Link Waitlist' : 'Browse Profiles'}
</h1>
<p className="text-lg text-cyan-100/80 max-w-2xl">
{typeof window !== 'undefined' && window.location.pathname.includes('/waitlist')
? 'Join the professional network for Roblox developers. Sign up for early access!'
: 'Explore talented Roblox developers in our community.'}
</p>
</div>
</div>
</div>
</section>