aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/public/layout.tsx
blob: b4628e11e1f361174916b7930ffe7f06d1d77be9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export default function PublicLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div className="h-screen items-center justify-center overflow-y-auto bg-muted">
      <main className="container mt-3">{children}</main>
    </div>
  );
}