feat: manage network people media

This commit is contained in:
syntaxbullet
2026-06-22 13:17:17 +02:00
parent b7e3318aad
commit d90f3bc77e
4 changed files with 48 additions and 5 deletions

View File

@@ -39,6 +39,7 @@ const sectionAdmin = (description: string) => ({
const statFields: Field[] = [text('value', 'Value'), text('label', 'Label')]
const personFields: Field[] = [
uploadField('imageUpload', 'Image'),
text('image', 'Image URL'),
text('imageAlt', 'Image alt text'),
text('name', 'Name'),
@@ -51,6 +52,7 @@ const juryMemberFields: Field[] = [
text('name', 'Name'),
text('role', 'Role'),
textarea('bio', 'Bio'),
uploadField('imageUpload', 'Image'),
text('image', 'Image URL'),
]