"use client"; import { useAuth } from "@pangeacyber/react-auth"; import styles from "./page.module.css"; import Link from "next/link"; export default function Home() { const { authenticated } = useAuth(); return (

Welcome to Secure ChatGPT starter app powered by{" "} Pangea

{authenticated &&

Please navigate to the Secure ChatGPT

} {!authenticated &&

Please sign in to see the chat page.

}
); }