Landing page

This commit is contained in:
Sebastien Castiel
2023-12-08 16:33:12 -05:00
parent 92a21ff4c5
commit 34c373272b
5 changed files with 231 additions and 59 deletions

View File

@@ -1,5 +1,9 @@
import { PropsWithChildren } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
return <main>{children}</main>
return (
<main className="flex-1 max-w-screen-md w-full mx-auto p-4">
{children}
</main>
)
}