First version

This commit is contained in:
Sebastien Castiel
2023-12-05 17:39:05 -05:00
parent 1fd6e48807
commit ed55c696cd
41 changed files with 8305 additions and 468 deletions

14
src/app/groups/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { RecentGroupList } from '@/app/groups/recent-group-list'
import { Button } from '@/components/ui/button'
import Link from 'next/link'
export default async function GroupsPage() {
return (
<main>
<Button asChild>
<Link href="/groups/create">New group</Link>
</Button>
<RecentGroupList />
</main>
)
}