'use client'; import * as React from 'react'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardFooter, CardHeader, CardTitle, } from '@/components/ui/card'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import { motion } from 'framer-motion'; // Dark theme and animation setup const cardVariants = { hidden: { opacity: 0, y: 10 }, visible: { opacity: 1, y: 0 }, }; const Profile = () => { return ( Profile
); }; export default Profile; // return // return ; // return ;