added bulk upload to guest book

This commit is contained in:
briannelson95
2025-07-02 17:22:16 -04:00
parent 81102fbae9
commit 1f8b0473e6
9 changed files with 211 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import AddGuestBookEntryModal from '@/components/AddGuestBookEntryModal'
import GuestBookList from '@/components/GuestBookList'
import TableIcon from './icons/TableIcon'
import GuestCardIcon from './icons/GuestCardIcon'
import BulkUploadGuest from './BulkUploadGuest'
interface GuestBookEntry {
id: string
@@ -62,7 +63,10 @@ export default function GuestBookPageClient({ entries }: { entries: GuestBookEnt
</button>
</div>
</div>
<button onClick={() => setIsOpen(true)} className="btn btn-primary">Add Guest</button>
<div className='flex gap-2'>
<button onClick={() => setIsOpen(true)} className="btn btn-primary">Add Guest</button>
<BulkUploadGuest />
</div>
</div>
<GuestBookList view={view} entries={entries} />