diff --git a/src/app/(dashboard)/[portSlug]/documents/new/page.tsx b/src/app/(dashboard)/[portSlug]/documents/new/page.tsx index 7dff734..a8cdb48 100644 --- a/src/app/(dashboard)/[portSlug]/documents/new/page.tsx +++ b/src/app/(dashboard)/[portSlug]/documents/new/page.tsx @@ -1,6 +1,4 @@ -import Link from 'next/link'; -import { Button } from '@/components/ui/button'; -import { PageHeader } from '@/components/shared/page-header'; +import { CreateDocumentWizard } from '@/components/documents/create-document-wizard'; interface PageProps { params: Promise<{ portSlug: string }>; @@ -8,17 +6,5 @@ interface PageProps { export default async function NewDocumentPage({ params }: PageProps) { const { portSlug } = await params; - return ( -
+ Upload via the existing file uploader, then paste the returned id here. +
+