Added announcement modal (#3098)

This commit is contained in:
Zane
2025-06-27 10:50:32 -07:00
committed by GitHub
parent dfc9dd2bf8
commit e40e84ec2e
7 changed files with 178 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
// Map of announcement file names to their content
export const announcementContents: Record<string, string> = {};
// Helper function to get announcement content by filename
export function getAnnouncementContent(filename: string): string | null {
return announcementContents[filename] || null;
}
+1
View File
@@ -0,0 +1 @@
[]