user creation and invites

This commit is contained in:
2025-06-24 16:31:13 -04:00
parent 23c8f468fe
commit a659401bde
32 changed files with 667 additions and 30 deletions

View File

@@ -1,9 +1,15 @@
import { queries } from '@/lib/queries'
import React from 'react'
export default function SingleEventPage() {
export default async function SingleEventPage({ params }: { params: { eventId: string }}) {
console.log(params)
const data = await queries.singleEvent(params.eventId)
return (
<div>
SINGLE EVENT PAGE
<h1 className='text-4xl font-bold'>
{data?.name}
</h1>
</div>
)
}