added grouping creator
All checks were successful
backend-action / build-image (push) Successful in 1m5s

This commit is contained in:
2024-05-16 14:49:42 +07:00
parent 05f3e019a8
commit d125687536
5 changed files with 170 additions and 20 deletions

View File

@@ -6,8 +6,11 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div className="container mx-auto mt-2">{children}</div>
<div className="container mx-auto mt-2 p-2">{children}</div>
</body>
</html>
);