"use client"; import {useState, FC} from "react"; import {Card, CardHeader, Button, Avatar, CardBody, CardFooter} from "@nextui-org/react"; import {clsx} from "@nextui-org/shared-utils"; import NextImage from "next/image"; interface UserTwitterCardProps { className?: string; } export const UserTwitterCard: FC = ({className}) => { const [isFollowed, setIsFollowed] = useState(false); return (

Zoey Lang

@zoeylang

Full-stack developer, @getnextui lover she/her  🎉

4

Following

97.1K

Followers

); };