diff --git a/client/pages/DevLinkProfiles.tsx b/client/pages/DevLinkProfiles.tsx
index b0125f6d..715bcfb8 100644
--- a/client/pages/DevLinkProfiles.tsx
+++ b/client/pages/DevLinkProfiles.tsx
@@ -1,28 +1,75 @@
+import Layout from "@/components/Layout";
+import { Button } from "@/components/ui/button";
import { useNavigate } from "react-router-dom";
+import { ExternalLink } from "lucide-react";
export default function DevLinkProfiles() {
const navigate = useNavigate();
return (
-
-
- {/* Back Button */}
-
+
+
+ {/* Animated backgrounds */}
+
+
+
+
+
- {/* Fullscreen iframe */}
-
+
+ {/* Header */}
+
+
+
+
+
+ Dev-Link Waitlist
+
+
+ Join the professional network for Roblox developers. Sign up for early access!
+
+
+
+
+ {/* Iframe Container */}
+
+
+
+
+
+
+ {/* Fallback Message */}
+
+
+
+
-
+
);
}