GodsDevProject's picture
Create src/layouts/BaseLayout.astro
b486e33 verified
---
import Nav from '../components/Nav.astro';
import Footer from '../components/Footer.astro';
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title><slot name="title" /></title>
</head>
<body>
<Nav />
<main style="max-width:900px;margin:3rem auto;padding:0 1rem;">
<slot />
</main>
<Footer />
</body>
</html>