feat: build local skills registry
This commit is contained in:
17
app/dashboard/audits/[id]/page.tsx
Normal file
17
app/dashboard/audits/[id]/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { AuditDetail } from "@/components/audits/audit-detail";
|
||||
|
||||
export default async function AuditDetailPage({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ id: string }>;
|
||||
}) {
|
||||
const { id } = await params;
|
||||
|
||||
return (
|
||||
<main className="px-4 py-5 sm:px-6 lg:px-8">
|
||||
<div className="mx-auto flex w-full max-w-7xl">
|
||||
<AuditDetail id={id as unknown as string} />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -1,10 +1,11 @@
|
||||
import { DashboardPlaceholderPage } from "@/components/dashboard-placeholder-page";
|
||||
import { AuditsBoard } from "@/components/audits/audits-board";
|
||||
|
||||
export default function AuditsPage() {
|
||||
return (
|
||||
<DashboardPlaceholderPage
|
||||
description="Audit-Review, Screenshots und oeffentliche Freigaben folgen in TASK-12 und TASK-13."
|
||||
title="Audits"
|
||||
/>
|
||||
<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">
|
||||
<AuditsBoard />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user