From e46ff98377d9a088317444e59b093d569cc895f4 Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Sat, 7 Oct 2023 13:15:12 -0700 Subject: [PATCH] added userbutton for logout and profile --- app/(main)/(routes)/page.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/app/(main)/(routes)/page.tsx b/app/(main)/(routes)/page.tsx index a49f9c8..5206e35 100644 --- a/app/(main)/(routes)/page.tsx +++ b/app/(main)/(routes)/page.tsx @@ -1,14 +1,11 @@ -import { Button } from "@/components/ui/button" +import { UserButton } from "@clerk/nextjs"; export default function Home() { return (
-

- Hello Discord Clone -

- -
+ + ) }