completionId: cgen-99e775847c2d4c74afb5ac6a93ec6eb1
cgen-99e775847c2d4c74afb5ac6a93ec6eb1
This commit is contained in:
parent
d9f574f021
commit
148dff2b74
1 changed files with 65 additions and 18 deletions
|
|
@ -1,28 +1,75 @@
|
||||||
|
import Layout from "@/components/Layout";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import { ExternalLink } from "lucide-react";
|
||||||
|
|
||||||
export default function DevLinkProfiles() {
|
export default function DevLinkProfiles() {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="fixed inset-0 bg-black z-50">
|
<Layout>
|
||||||
<div className="relative w-full h-full">
|
<div className="relative min-h-screen bg-black text-white overflow-hidden">
|
||||||
{/* Back Button */}
|
{/* Animated backgrounds */}
|
||||||
<button
|
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#06b6d4_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||||
onClick={() => navigate("/")}
|
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(6,182,212,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||||
className="absolute top-4 left-4 z-10 px-4 py-2 rounded-lg bg-cyan-500/20 border border-cyan-400/60 text-cyan-300 hover:bg-cyan-500/30 transition flex items-center gap-2"
|
<div className="pointer-events-none absolute inset-0 opacity-[0.08] [background-image:linear-gradient(90deg,rgba(6,182,212,0.1)_1px,transparent_1px),linear-gradient(0deg,rgba(6,182,212,0.1)_1px,transparent_1px)] [background-size:50px_50px] animate-pulse" />
|
||||||
>
|
<div className="pointer-events-none absolute top-20 left-10 w-72 h-72 bg-cyan-500/20 rounded-full blur-3xl animate-blob" />
|
||||||
← Back to AeThex.Dev
|
<div className="pointer-events-none absolute bottom-20 right-10 w-72 h-72 bg-cyan-600/10 rounded-full blur-3xl animate-blob" />
|
||||||
</button>
|
|
||||||
|
|
||||||
{/* Fullscreen iframe */}
|
<main className="relative z-10">
|
||||||
<iframe
|
{/* Header */}
|
||||||
src="https://dev-link.me/waitlist"
|
<section className="relative overflow-hidden py-12 lg:py-16">
|
||||||
className="w-full h-full border-0"
|
<div className="container mx-auto max-w-6xl px-4">
|
||||||
title="Dev-Link Waitlist"
|
<Button
|
||||||
sandbox="allow-same-origin allow-scripts allow-popups allow-forms allow-top-navigation allow-top-navigation-by-user-activation"
|
onClick={() => navigate("/dev-link")}
|
||||||
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"
|
variant="ghost"
|
||||||
/>
|
className="text-cyan-300 hover:bg-cyan-500/10 mb-8"
|
||||||
|
>
|
||||||
|
← 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>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Iframe Container */}
|
||||||
|
<section className="py-12 lg:py-16">
|
||||||
|
<div className="container mx-auto max-w-5xl px-4">
|
||||||
|
<div className="rounded-lg overflow-hidden border border-cyan-400/30 bg-cyan-950/20 shadow-[0_0_30px_rgba(6,182,212,0.2)]">
|
||||||
|
<iframe
|
||||||
|
src="https://dev-link.me/waitlist"
|
||||||
|
className="w-full border-0"
|
||||||
|
title="Dev-Link Waitlist"
|
||||||
|
style={{ minHeight: "800px", height: "80vh", maxHeight: "800px" }}
|
||||||
|
sandbox="allow-same-origin allow-scripts allow-popups allow-forms allow-top-navigation allow-top-navigation-by-user-activation"
|
||||||
|
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Fallback Message */}
|
||||||
|
<div className="mt-12 text-center">
|
||||||
|
<p className="text-cyan-200/70 mb-4">
|
||||||
|
Having trouble loading the waitlist form?
|
||||||
|
</p>
|
||||||
|
<a
|
||||||
|
href="https://dev-link.me/waitlist"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="inline-flex items-center gap-2 px-6 py-3 rounded-lg bg-cyan-500/20 border border-cyan-400/60 text-cyan-300 hover:bg-cyan-500/30 transition"
|
||||||
|
>
|
||||||
|
Visit Waitlist Directly
|
||||||
|
<ExternalLink className="h-4 w-4" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</Layout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue