Content retrival on all pages

This commit is contained in:
Antoine Phan
2025-06-05 17:51:43 +01:00
parent dec7e70c43
commit 28f4284406
8 changed files with 65 additions and 16 deletions

8
src/utils/schemas.ts Normal file
View File

@@ -0,0 +1,8 @@
type CouncilMember = {
name: string,
email: string,
position: string,
positionDescription: string,
image: string, // URL
yearProgram: string
}