diff options
Diffstat (limited to 'components/layout.js')
| -rw-r--r-- | components/layout.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout.js b/components/layout.js index 14eeff7..523abfe 100644 --- a/components/layout.js +++ b/components/layout.js @@ -4,9 +4,9 @@ import Footer from './footer'; export default function Layout({ children }) {
return (
<>
- <html class="bg-gray-950 text-white">
+ <html className="bg-gray-950 text-white">
<Header />
- <body class="h-screen"><main>{children}</main></body>
+ <body className="h-screen"><main>{children}</main></body>
<Footer />
</html>
</>
|
