remove loads of styles in favor of inline styles

This commit is contained in:
Thomas Ruoff
2021-11-10 23:45:17 +01:00
parent 6d64e346af
commit 26e4679827
12 changed files with 39 additions and 89 deletions

View File

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