From e48763760022271a55473bf564d2d9819c095f97 Mon Sep 17 00:00:00 2001 From: june Date: Wed, 13 Aug 2025 23:34:45 +1200 Subject: [PATCH] Added basic new recipe page --- src/pages/recipe/new.astro | 63 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/pages/recipe/new.astro diff --git a/src/pages/recipe/new.astro b/src/pages/recipe/new.astro new file mode 100644 index 0000000..02cf587 --- /dev/null +++ b/src/pages/recipe/new.astro @@ -0,0 +1,63 @@ +--- +import client from "@/data/pocketbase"; +import SiteLayout from "@/layouts/base"; +import ImageCarousel from "@/components/Detail/ImageCarousel"; +import IngredientTableView from "@/components/Detail/IngredientTableView"; +import StepView from "@/components/Detail/StepView"; +import InfoView from "@/components/Detail/InfoView"; + +const { recipeid } = Astro.params; + +--- + + + + +
+
+
+ Image Upload +
+ + + + + + +

Ingredients

+ + + + + + + + + + + + + + + +
QuantityUnitIngredient
˚ + + + + + + +
+
+ +
+ + + + +
+ +
+
\ No newline at end of file