Skip to content
Snippets Groups Projects
Commit ad3f412d authored by Yusuf Akgül's avatar Yusuf Akgül :hatching_chick:
Browse files

refactor last merge

parent ed949438
No related branches found
No related tags found
No related merge requests found
Pipeline #34412 passed
import { ClerkProvider, UserButton, UserProfile } from "@clerk/nextjs";
import { UserProfile } from "@clerk/nextjs";
import { dark } from '@clerk/themes';
export default function User({ params }: { params: { userid: string } }) {
return (
<UserProfile appearance={{baseTheme:dark}}/>
<>
<h1>User Profile Page WIP</h1>
<p>Unique Page Params: {params.userid}</p>
<UserProfile appearance={{ baseTheme: dark }} />
</>
)
}
\ No newline at end of file
-- CreateTable
CREATE TABLE "Message" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"author" TEXT,
"gameId" TEXT,
"title" TEXT,
"content" TEXT NOT NULL,
"sentAt" DATETIME DEFAULT CURRENT_TIMESTAMP,
"updatedAt" DATETIME
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment