Migrate to yarn berry and fix all workspace errors
This commit is contained in:
16
frontend/components/layout.js
Normal file
16
frontend/components/layout.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import Head from 'next/head'
|
||||
|
||||
import Footer from './Footer'
|
||||
|
||||
export default function Layout ({ children }) {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Warframe Center</title>
|
||||
<link rel='icon' href='/favicon.ico' />
|
||||
</Head>
|
||||
<main>{children}</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user