diff --git a/apps/nextjs/src/app/_components/auth-showcase.tsx b/apps/nextjs/src/app/_components/auth-showcase.tsx deleted file mode 100644 index 4bf5635..0000000 --- a/apps/nextjs/src/app/_components/auth-showcase.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { auth, signIn, signOut } from "@acme/auth"; -import { Button } from "@acme/ui/button"; - -export async function AuthShowcase() { - const session = await auth(); - - if (!session) { - return ( -
- ); - } - - return ( -- Logged in as {session.user.name} -
- - -