Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/app/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,10 @@ function CreatePage() {
</div>

<div>
<label className="text-foreground mb-2 block text-sm">Opening Chapter</label>
<label className="text-foreground mb-1 block text-sm">Opening Chapter</label>
<p className="text-muted mb-2 text-[11px]">
The opening of your storyline — write a synopsis or introduction, or jump straight into the story. Markdown supported.
</p>
<WritePreviewToggle
activeTab={newPreviewTab}
onTabChange={setNewPreviewTab}
Expand Down Expand Up @@ -453,6 +456,10 @@ function CreatePage() {
</div>
)}

<div className="border-border text-muted rounded border px-3 py-2 text-[10px] leading-relaxed">
Your content will be stored on IPFS with a content hash recorded on-chain. Once published, plots are permanently immutable and cannot be edited or deleted.
</div>

<button
type="submit"
disabled={!newCanSubmit || newBusy}
Expand Down Expand Up @@ -586,6 +593,10 @@ function CreatePage() {
</div>
)}

<div className="border-border text-muted rounded border px-3 py-2 text-[10px] leading-relaxed">
Your content will be stored on IPFS with a content hash recorded on-chain. Once published, plots are permanently immutable and cannot be edited or deleted.
</div>

<button
type="submit"
disabled={!chainCanSubmit || chainBusy}
Expand Down
Loading