aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-08 16:33:12 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-08 16:33:12 -0500
commit34c373272ba11077c2dfa31eee3736f51ffde684 (patch)
tree6ad4464bab615c4557ac77947c3b67978515a8a1 /src/app/groups
parent92a21ff4c5df6e9f771cfbd140835dce3b6d7b0d (diff)
Landing page
Diffstat (limited to 'src/app/groups')
-rw-r--r--src/app/groups/layout.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx
index d8aff39..df7d39e 100644
--- a/src/app/groups/layout.tsx
+++ b/src/app/groups/layout.tsx
@@ -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>
+ )
}