Three layout adjustments
1. Move Active/Complete tag to the Deadline section
The active/complete status is more relevant next to the deadline countdown. Move it from the stat boxes area to the Deadline divider section:
```
Deadline: 1d 8h 31m 10s · active
```
Or on two lines:
```
active · Deadline: 1d 8h 31m 10s
Created: Mar 26, 2026
```
2. Move Created date to Deadline section with full year
Remove "Created" from the 2×2 stat boxes. Move it to the Deadline section as a second line:
```
active · Deadline: 1d 8h 31m 10s
Created: Mar 26, 2026
```
Include the year (2026) — currently only shows "Mar 26".
For storylines without a deadline (sunset/complete), show:
```
complete
Created: Mar 26, 2026
```
3. Replace "Created" box with Rating
The 2×2 grid now has an empty 4th slot (Created moved out). Fill it with Rating:
```
┌────────┐ ┌────────┐
│ 4 │ │ 2 │
│ Plots │ │ Holders│
└────────┘ └────────┘
┌────────┐ ┌────────┐
│ 29 │ │ 4.5 │
│ Views │ │ Rating │
└────────┘ └────────┘
```
- Show average rating (e.g., "4.5") or "—" if no ratings yet
- Fetch from existing ratings data (already available in the storyline query or rating components)
Files to modify
- `src/app/profile/[address]/page.tsx` — Writer tab StoryRow component
Branch
`task/738-writer-deadline-rating`
Self-Verification (T3)
Three layout adjustments
1. Move Active/Complete tag to the Deadline section
The active/complete status is more relevant next to the deadline countdown. Move it from the stat boxes area to the Deadline divider section:
```
Deadline: 1d 8h 31m 10s · active
```
Or on two lines:
```
active · Deadline: 1d 8h 31m 10s
Created: Mar 26, 2026
```
2. Move Created date to Deadline section with full year
Remove "Created" from the 2×2 stat boxes. Move it to the Deadline section as a second line:
```
active · Deadline: 1d 8h 31m 10s
Created: Mar 26, 2026
```
Include the year (2026) — currently only shows "Mar 26".
For storylines without a deadline (sunset/complete), show:
```
complete
Created: Mar 26, 2026
```
3. Replace "Created" box with Rating
The 2×2 grid now has an empty 4th slot (Created moved out). Fill it with Rating:
```
┌────────┐ ┌────────┐
│ 4 │ │ 2 │
│ Plots │ │ Holders│
└────────┘ └────────┘
┌────────┐ ┌────────┐
│ 29 │ │ 4.5 │
│ Views │ │ Rating │
└────────┘ └────────┘
```
Files to modify
Branch
`task/738-writer-deadline-rating`
Self-Verification (T3)