Resources page, ResourceBlock, schemas

This commit is contained in:
Antoine Phan
2025-07-25 16:28:23 -04:00
parent c67d68595f
commit 7e2b9d32aa
5 changed files with 30 additions and 22 deletions

View File

@@ -46,4 +46,10 @@ export type CouncilMember = {
yearProgram: string;
};
export type Resource = {
title: string;
url: string;
description: string;
}
export type Redirect = { shortname: string; url: string };