mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-01 20:29:03 +02:00
17 lines
518 B
TypeScript
17 lines
518 B
TypeScript
import { DashboardClient } from "../../../components/dashboard-client";
|
|
import PageWrapper from "../../../components/ui/PageWrapper";
|
|
|
|
const apiBaseUrl = process.env.NEXT_PUBLIC_API_BASE_URL ?? "http://localhost:4000";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default function DashboardPage() {
|
|
return (
|
|
<PageWrapper contentClassName="space-y-8" currentPath="dashboard">
|
|
<section className="reveal-up">
|
|
<DashboardClient apiBaseUrl={apiBaseUrl} />
|
|
</section>
|
|
</PageWrapper>
|
|
);
|
|
}
|