- 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>
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>
|