import Link from "next/link"; import { auth } from "~/auth"; import { SignInGH } from "~/app/_components/auth/sign_in_gh"; export default async function HomePage() { const session = await auth(); if (!session) { return (

{new Date().toDateString()}
{new Date().toLocaleTimeString()}

< SignInGH />
); } else { return (
); } }