Skip to content

Commit d2511bf

Browse files
committed
Put a large max width to the page and all components on the coaching session page
1 parent 3d1ada0 commit d2511bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/coaching-sessions/[id]/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ export default function CoachingSessionsPage() {
152152
};
153153

154154
return (
155-
<>
156-
<div className="flex-col h-full md:flex">
155+
<div className="max-w-screen-2xl">
156+
<div className="flex-col h-full md:flex ">
157157
<div className="flex flex-col items-start justify-between space-y-2 py-4 px-4 sm:flex-row sm:items-center sm:space-y-0 md:h-16">
158158
<CoachingSessionTitle
159159
locale={siteConfig.locale}
@@ -243,6 +243,6 @@ export default function CoachingSessionsPage() {
243243
</div>
244244
</div>
245245
</div>
246-
</>
246+
</div>
247247
);
248248
}

0 commit comments

Comments
 (0)