align header and content width

This commit is contained in:
Thomas Ruoff
2021-10-28 23:29:30 +02:00
parent 990b1fb163
commit cef1c76685
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ export default function Home({ children }: { children: React.ReactNode }) {
return (
<>
<Header />
<main className="main">{children}</main>
<main className="main max-w-7xl mx-auto px-4 sm:px-6">{children}</main>
<Footer />
</>
)