feat(layout): Adjust content container width

Increases the maximum content container width on larger screens
to provide more breathing room and a better reading experience.
This change was made to improve the overall layout and
visual presentation of the application.
This commit is contained in:
AderKonstantin
2025-03-28 17:08:04 +03:00
parent ccb5978831
commit 1c85792839

View File

@@ -32,7 +32,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return ( return (
<html className="dark" lang="en"> <html className="dark" lang="en">
<body className={`bg-black text-white light:bg-white light:text-black font-sans`}> <body className={`bg-black text-white light:bg-white light:text-black font-sans`}>
<div className="text-xl 2xl:mx-64 xl:mx-32 md:mx-6"> <div className="text-xl 2xl:mx-72 xl:mx-36 md:mx-6">
<MainHeader /> <MainHeader />
{children} {children}
<MainFooter /> <MainFooter />