- {/* Title */}
-
-
- setTitle(e.target.value)} />
-
- {/* Price */}
-
-
- {
- const val = e.target.value;
- setPrice(val);
- }}
- onBlur={e => {
- const num = parseFloat(e.target.value);
- if (!isNaN(num)) {
- setPrice(num.toFixed(2));
- }
- }}
- />
-
- {/* Currency */}
-
-
- setCurrency(e.target.value.toUpperCase().slice(0,3))} />
-
- {/* Featured */}
-
- setIsFeatured(e.target.checked)} />
-
-
- {/* Subscription Billing (Locked) + Availability */}
-
-
-
-
Fixed monthly subscription billing (interval count = 1). These settings are locked.
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Description */}
-
Upload an image and crop it to fit the coffee thumbnail (16:9 aspect ratio, 144px height)
@@ -241,6 +173,74 @@ export default function CreateSubscriptionPage() {