From f37572f0cfa397a9170eaf02191e798e807f0e01 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Fri, 28 Mar 2025 17:08:50 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(layout):=20Enhance=20blog=20po?= =?UTF-8?q?st=20layout=20for=20better=20readability?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a `m-auto` class to center the blog post content and sets a maximum width of `3xl` for larger screens to improve readability. --- app/blogpost/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/blogpost/layout.tsx b/app/blogpost/layout.tsx index 3b1a06d..cf89c29 100644 --- a/app/blogpost/layout.tsx +++ b/app/blogpost/layout.tsx @@ -9,7 +9,7 @@ import MainFooter from "@/components/footer/main"; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( -
+
{children}
);