Recipie/src/layouts/base.astro
june b8de3e82e9 [PIE-8] Add recipe detail view And Other Major Changes (!6)
- Adds /recipe/:id page
- (Almost!) fully designed and functional recipe view
- Has steps, images, ingredients, peripheral info (work/wait time, rating, description, servings)
- New colour scheme! Much more monotone but in a nice way (imo)
- New font, not condensed
- Several more smaller design changes
Co-authored-by: june <self@breadone.net>
Co-committed-by: june <self@breadone.net>
2025-08-13 16:54:05 +12:00

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>