"use client"; import { Menu, User } from "lucide-react"; import { AnimatePresence, motion } from "motion/react"; import { useTranslations } from "next-intl"; import { Button } from "@/components/ui/button"; interface ProfileContentProps { onMenuClick: () => void; } export function ProfileContent({ onMenuClick }: ProfileContentProps) { const t = useTranslations("userSettings"); return (

{t("profile_title")}

{t("profile_description")}

{/* Profile form will be added in Task 5 */}

Profile settings coming soon...

); }