feat(pages): add scheduled publish workflow for page management

This commit is contained in:
2026-02-12 23:10:47 +01:00
parent a2bea6326e
commit 18b709b4b0
8 changed files with 95 additions and 12 deletions

View File

@@ -77,6 +77,15 @@ export function CreatePageForm({ action }: CreatePageFormProps) {
</label>
</div>
<label className="space-y-1">
<span className="text-xs text-neutral-600">Scheduled publish (optional)</span>
<input
name="scheduledPublishAt"
type="datetime-local"
className="w-full rounded border border-neutral-300 px-3 py-2 text-sm"
/>
</label>
<Button type="submit">Create page</Button>
</form>
)