import Link from 'next/link'; import { Button } from '@/components/ui/button'; import { PageHeader } from '@/components/shared/page-header'; interface PageProps { params: Promise<{ portSlug: string }>; } export default async function NewDocumentPage({ params }: PageProps) { const { portSlug } = await params; return (
Back to documents } />
); }