completionId: cgen-698478f874c3453888d41b1723080c59
cgen-698478f874c3453888d41b1723080c59
This commit is contained in:
parent
e713a21ed4
commit
bdb7b4181e
2 changed files with 16 additions and 9 deletions
|
|
@ -49,17 +49,18 @@ export default function DevLink() {
|
||||||
<Button
|
<Button
|
||||||
size="lg"
|
size="lg"
|
||||||
className="bg-cyan-400 text-black shadow-[0_0_30px_rgba(6,182,212,0.35)] transition hover:bg-cyan-300"
|
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" />
|
<Users className="mr-2 h-5 w-5" />
|
||||||
Join Dev-Link
|
Join Waitlist
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
size="lg"
|
size="lg"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className="border-cyan-400/60 text-cyan-300 hover:bg-cyan-500/10"
|
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>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -28,12 +28,18 @@ export default function DevLinkProfiles() {
|
||||||
← Back to Dev-Link
|
← Back to Dev-Link
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-4">
|
<div className="flex items-center justify-between mb-4">
|
||||||
Dev-Link Waitlist
|
<div>
|
||||||
</h1>
|
<h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-2">
|
||||||
<p className="text-lg text-cyan-100/80 max-w-2xl">
|
{typeof window !== 'undefined' && window.location.pathname.includes('/waitlist') ? 'Dev-Link Waitlist' : 'Browse Profiles'}
|
||||||
Join the professional network for Roblox developers. Sign up for early access!
|
</h1>
|
||||||
</p>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue