19 lines
307 B
Plaintext
19 lines
307 B
Plaintext
---
|
|
import BaseHead from "../components/BaseHead.astro";
|
|
import Header from "@/components/Header";
|
|
---
|
|
|
|
<html lang=en>
|
|
<head>
|
|
<BaseHead title="Recipie" />
|
|
</head>
|
|
<body>
|
|
<main id="main" class="flex-1">
|
|
<Header/>
|
|
<div class="px-3 md:px-5 pt-2">
|
|
<slot />
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|