19 lines
414 B
Plaintext
19 lines
414 B
Plaintext
---
|
|
import {Navigation} from '../components/Navigation'
|
|
import Footer from '../views/Footer.astro';
|
|
---
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body class="bg-neutral-900">
|
|
<Navigation client:only />
|
|
<article>
|
|
<slot />
|
|
</article>
|
|
<div class="block">
|
|
<Footer />
|
|
</div>
|
|
</body>
|
|
</html> |