aethex-forge/client/pages/DevLinkProfiles.tsx
Builder.io 8c4d0ef0c2 completionId: cgen-1a363d5e2d72458394bd266f35e94968
cgen-1a363d5e2d72458394bd266f35e94968
2025-11-06 19:49:57 +00:00

28 lines
1,002 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"
className="w-full h-full border-0"
title="Dev-Link Platform"
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>
);
}