From 56534c8bdaa10512c3f7807be2fd884253af38c8 Mon Sep 17 00:00:00 2001 From: June Date: Mon, 17 Nov 2025 16:23:21 +1300 Subject: [PATCH] Started adding new recipe page but god this sucks --- web/src/pages/recipe/new.astro | 75 ++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 web/src/pages/recipe/new.astro diff --git a/web/src/pages/recipe/new.astro b/web/src/pages/recipe/new.astro new file mode 100644 index 0000000..6ad2c97 --- /dev/null +++ b/web/src/pages/recipe/new.astro @@ -0,0 +1,75 @@ +--- +import Base from "@layout/Base"; +import { authPB } from "@data/pb"; + +const pb = await authPB() + +const templateHeaders = ` +--- +title: +description: +cook time: +prep time: +course: +servings: +tags: + - +--- +` +--- + + + + +
+
+ +
+

New Recipe

+ +
+ +
+ +
+ + + +
+ +
+ + + +
+ +
+ +

Recipie uses Cooklang. Visit the documentation to learn more.

+
+
+ \ No newline at end of file