Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 17 lines 372 B view raw
1import { H4 } from "@/components/Shared/UI"; 2 3interface AuthMessageProps { 4 description: string; 5 title: string; 6} 7 8const AuthMessage = ({ description, title }: AuthMessageProps) => ( 9 <div className="space-y-2"> 10 <H4>{title}</H4> 11 <div className="text-gray-500 text-sm dark:text-gray-200"> 12 {description} 13 </div> 14 </div> 15); 16 17export default AuthMessage;