feat: feedback v2

This commit is contained in:
taskylizard 2024-08-25 11:00:20 +00:00
parent d17887ca75
commit 9faa251c86
No known key found for this signature in database
GPG key ID: 1820131ED1A24120
26 changed files with 1042 additions and 419 deletions

View file

@ -125,12 +125,14 @@ export function getHeader(id: string) {
const description = '<p class="text-black dark:text-text-2">'
const feedback = '<Feedback />'
const data = headers[id]
let header = '---\n'
header += `title: "${data.title}"\n`
header += `description: ${data.description}\n`
header += '---\n'
header += `${title}${data.title}</h1>\n`
header += `${description}${data.description}</p></div>\n\n`
header += `${description}${data.description}</p></div>\n\n${feedback}\n\n`
return header
}