refactor routes everywhere

This commit is contained in:
Ishaan Dey
2024-04-17 21:24:57 -04:00
parent d8d639510c
commit a53cc57b24
7 changed files with 54 additions and 47 deletions

View File

@ -0,0 +1,19 @@
import { UserButton, currentUser } from "@clerk/nextjs"
import { redirect } from "next/navigation"
import Dashboard from "@/components/dashboard"
import Navbar from "@/components/dashboard/navbar"
export default async function DashboardPage() {
const user = await currentUser()
if (!user) {
redirect("/")
}
return (
<div className="w-screen h-screen flex flex-col overflow-hidden overscroll-none">
<Navbar />
<Dashboard />
</div>
)
}