"use client"; import { useRouter } from "next/navigation"; import { SignOutButton } from "@clerk/nextjs"; import { Button } from "@acme/ui/button"; export const runtime = "edge"; export default function AuthenticationPage() { const router = useRouter(); return (

Sign Out

Are you sure you want to sign out?

router.push("/?redirect=false")}>
); }