Add district header on root page

This commit is contained in:
Eli Ribble 2026-04-03 18:28:41 +00:00
parent bfecae7d61
commit 5842b6251d
No known key found for this signature in database
10 changed files with 124 additions and 157 deletions

View file

@ -24,28 +24,6 @@ document.addEventListener("DOMContentLoaded", () => {
}
});
});
document.addEventListener("init", () => {
const user = {
display_name: "",
initials: "",
notifications: [],
notification_counts: {
communication: 0,
home: 0,
review: 0,
},
organization: {
name: "",
},
role: "",
username: "",
};
});
interface GreetingComponent {
message: string;
name: string;
updateMessage(): void;
}
const pinia = createPinia();
const app = createApp(App);