first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:15:25 +03:00
commit 9eb7aea821
56 changed files with 20630 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import ProfileClient from './ProfileClient'
import { getProfile } from './actions'
export default async function ProfilePage() {
const profile = await getProfile()
return <ProfileClient initialProfile={profile} />
}