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

Zoey Lang

@zoeylang

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

4

Following

97.1K

Followers

); };