diff --git a/src/app/(dashboard)/page.tsx b/src/app/(dashboard)/page.tsx index 84e935f..08110f3 100644 --- a/src/app/(dashboard)/page.tsx +++ b/src/app/(dashboard)/page.tsx @@ -1,5 +1,6 @@ import { redirect } from "next/navigation"; import { getCurrent } from "@/features/auth/actions"; +import { CreateWorkspaceForm } from "@/features/workspaces/components/create-workspace-form"; export default async function HomePage() { const user = await getCurrent(); @@ -7,8 +8,8 @@ export default async function HomePage() { if (!user) redirect("/sign-in"); return ( -