aethex-forge/client/pages/DevLinkProfiles.tsx
Builder.io d9f574f021 completionId: cgen-f5cb65c7a69b48deaac7f2d6b66b01f3
cgen-f5cb65c7a69b48deaac7f2d6b66b01f3
2025-11-06 19:56:42 +00:00

28 lines
1,011 B
TypeScript

import { useNavigate } from "react-router-dom";
export default function DevLinkProfiles() {
const navigate = useNavigate();
return (
<div className="fixed inset-0 bg-black z-50">
<div className="relative w-full h-full">
{/* Back Button */}
<button
onClick={() => navigate("/")}
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"
>
Back to AeThex.Dev
</button>
{/* Fullscreen iframe */}
<iframe
src="https://dev-link.me/waitlist"
className="w-full h-full border-0"
title="Dev-Link Waitlist"
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>
</div>
);
}