Finish Project

This commit is contained in:
2026-02-04 11:00:00 +01:00
parent 544fd29a8c
commit 4063d7ac3c
60 changed files with 1573 additions and 103 deletions

View File

@@ -0,0 +1,7 @@
'use server'
import {cookies} from "next/headers";
export async function getUser() {
const cookieStore = await cookies()
return cookieStore.get("user")?.value || undefined;
}