Files
pitchfast/app/dashboard/outreach/page.tsx
2026-06-05 16:47:22 +02:00

12 lines
330 B
TypeScript

import { OutreachReviewWorkspace } from "@/components/outreach/outreach-review-workspace";
export default function OutreachPage() {
return (
<main className="px-4 py-5 sm:px-6 lg:px-8">
<div className="mx-auto flex w-full max-w-7xl flex-col gap-6">
<OutreachReviewWorkspace />
</div>
</main>
);
}