import { useState } from "react";
import { useEffect } from "react";

export const getServerSideProps = () => ({ props: {}, unstable_runtimeJS: false });

export default function ChatGpt() {

const [url, setUrl] = useState('https://chat.openai.com/auth/login')
    


  return (
    <div>
    <iframe src={url} frameBorder="0" width="100%" height="600px" sandbox="allow-same-origin allow-scripts allow-popups allow-forms"></iframe>
    </div>

  );
}

Is open.ai blocking Iframining of chatgpt or nextjs.