Files
warframe-center/frontend/components/layout.js

17 lines
302 B
JavaScript

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 />
</>
)
}