initial commit

This commit is contained in:
Ken Yasue
2025-06-01 22:21:33 +02:00
commit 5149012dcf
30 changed files with 6346 additions and 0 deletions

21
app/page.tsx Normal file
View File

@ -0,0 +1,21 @@
import Image from "next/image";
import { db } from "./connection";
export default async function Home() {
const user = await db.userRepository.findOneBy({email: "montheeric1@gmail.com"})
return (
<div>
<div>{user?.email}</div>
<div className="size-10">
<Image
alt="user avatar"
src={user?.image ?? ""}
className="object-cover"
fill
/>
</div>
</div>
);
}