import {
Card,
CardBody,
CardHeader,
CardFooter,
Avatar,
Typography,
Tabs,
TabsHeader,
Tab,
Switch,
Tooltip,
Button,
} from "@material-tailwind/react";
import {
HomeIcon,
ChatBubbleLeftEllipsisIcon,
Cog6ToothIcon,
PencilIcon,
} from "@heroicons/react/24/solid";
import { Link } from "react-router-dom";
import { ProfileInfoCard, MessageCard } from "@/widgets/cards";
import { platformSettingsData, conversationsData, projectsData } from "@/data";
export function Profile() {
return (
<>
Richard Davis
CEO / Co-Founder
App
Message
Settings
Platform Settings
{platformSettingsData.map(({ title, options }) => (
{title}
{options.map(({ checked, label }) => (
))}
))}
),
}}
action={
}
/>
Platform Settings
{conversationsData.map((props) => (
reply
}
/>
))}
Projects
Architects design houses
{projectsData.map(
({ img, title, description, tag, route, members }) => (
{tag}
{title}
{description}
{members.map(({ img, name }, key) => (
))}
)
)}
>
);
}
export default Profile;