wip: clerk auth

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-02-07 11:59:40 +01:00
parent bd62127451
commit a9cbff2306
46 changed files with 611 additions and 816 deletions

View File

@@ -2,16 +2,9 @@ import PageLayout from '@/app/(app)/page-layout';
import OverviewMetrics from './overview-metrics';
interface PageProps {
params: {
organizationId: string;
projectId: string;
};
}
export default function Page({ params: { organizationId } }: PageProps) {
export default function Page() {
return (
<PageLayout title="Overview" organizationId={organizationId}>
<PageLayout title="Overview">
<OverviewMetrics />
</PageLayout>
);