This commit is contained in:
Janis
2022-12-18 16:56:58 +01:00
parent 67e6f292ed
commit bb49f58ace
24 changed files with 5519 additions and 5685 deletions

9
app/tutorials/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function Page({
params,
searchParams,
}: {
params: { slug: string };
searchParams?: { [key: string]: string | string[] | undefined };
}) {
return <h1>List all tutorials</h1>;
}