add: OpenGraph image, timeline card state
Added three states to timeline card, added open graph image and description
This commit is contained in:
parent
f75d66a0d0
commit
d71e59b9c0
12 changed files with 112 additions and 34 deletions
|
@ -1,4 +1,4 @@
|
|||
export type Card = {
|
||||
export type PriceCard = {
|
||||
uuid : string
|
||||
name : string
|
||||
price : string
|
11
shared/TimelineCard.ts
Normal file
11
shared/TimelineCard.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
export type TimelineState = 'planned' | 'inProgress' | 'done'
|
||||
|
||||
export type TimelineCard = {
|
||||
icon: string
|
||||
title: string
|
||||
description: string
|
||||
state: {
|
||||
value: TimelineState
|
||||
message ?: string
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue