+
@@ -47,46 +57,22 @@ export function Header() {
function NavLinks({ isActive }: { isActive: (path: string) => boolean }) {
return (
<>
-
- Home
-
-
- About
-
-
- Download
-
-
- Donors
-
-
- Maintainers
-
+ {['/', '/about', '/download', '/donors', '/maintainers'].map((path, idx) => {
+ const labels = ['Home', 'About', 'Download', 'Donors', 'Maintainers'];
+ return (
+
+ {labels[idx]}
+
+ );
+ })}
>
);
-}
\ No newline at end of file
+}
diff --git a/src/services/github.ts b/src/services/github.ts
index ac52f18..2c3c7fb 100644
--- a/src/services/github.ts
+++ b/src/services/github.ts
@@ -16,11 +16,11 @@ export interface Maintainer {
export async function getMaintainers(): Promise
{
const maintainerUsernames = [
- 'ClementLefebvre',
- 'mtwebster',
- 'JosephMills',
- 'leigh123linux',
- 'xenopeek'
+ 'eshanized',
+ 'iconized',
+ 'alokified',
+ 'utkrshift',
+ // 'eshaanized'
];
const maintainers = await Promise.all(