Add: 'maths' tag

This commit is contained in:
2024-11-27 12:06:52 +01:00
parent 06218d0e98
commit 81512e97bf
3 changed files with 9 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ export interface Tag {
color: BadgeColor
}
export const TAGS = [
export const TAGS: Array<Tag> = [
{
label: 'Article',
icon: 'i-ph-pencil-line-duotone',
@@ -90,4 +90,9 @@ export const TAGS = [
icon: 'i-vscode-icons-file-type-python',
color: 'amber',
},
].sort((a, b) => a.label.localeCompare(b.label))
{
label: 'Maths',
icon: 'i-ph-calculator-duotone',
color: 'rose',
},
]