This commit is contained in:
Ben Ramey
2022-08-27 16:58:01 -05:00
parent f46da9a619
commit 7a798c1bcd
5 changed files with 39 additions and 57 deletions

View File

@@ -11,13 +11,8 @@ function Layout({ user, loading = false, children }) {
<Header user={user} loading={loading} />
<main>
<div className="container">{children}</div>
<div className="container mx-auto">{children}</div>
</main>
<style jsx>{`
`}</style>
<style jsx global>{`
`}</style>
</>
);
}