import { createClient } from "@/lib/supabase-server" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" export default async function ProfilePage() { const supabase = createClient() const { data: { user } } = await supabase.auth.getUser() return (

Profil

Genel Bilgiler Kişisel profil bilgileriniz.
PK

E-posta adresi değiştirilemez.

) }