feat: list recent supporters

This commit is contained in:
codytseng 2025-03-03 20:08:34 +08:00
parent 55bd996970
commit 94f35be93e
14 changed files with 106 additions and 13 deletions

View file

@ -4,6 +4,7 @@ import { cn } from '@/lib/utils'
import { useState } from 'react'
import { useTranslation } from 'react-i18next'
import ZapDialog from '../ZapDialog'
import RecentSupporters from './RecentSupporters'
export default function Donation({ className }: { className?: string }) {
const { t } = useTranslation()
@ -38,6 +39,7 @@ export default function Donation({ className }: { className?: string }) {
)
})}
</div>
<RecentSupporters />
<ZapDialog
open={open}
setOpen={setOpen}