22 lines
683 B
TypeScript
22 lines
683 B
TypeScript
import { DashboardLayout } from "@/components/layout/sidebar";
|
|
import { PageHeader } from "@/components/layout/page-header";
|
|
import { ActivityPageClient } from "@/components/activity/activity-page-client";
|
|
|
|
// Force dynamic rendering to avoid prerendering issues with client components
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default function ActivityPage() {
|
|
return (
|
|
<DashboardLayout>
|
|
<div className="space-y-6">
|
|
<PageHeader
|
|
title="Activity Feed"
|
|
description="Everything that's happening across your projects, pulled live from your task data."
|
|
/>
|
|
|
|
<ActivityPageClient />
|
|
</div>
|
|
</DashboardLayout>
|
|
);
|
|
}
|