diff --git a/src/pages/Maintainers.tsx b/src/pages/Maintainers.tsx index 23226d4..ab7f9ca 100644 --- a/src/pages/Maintainers.tsx +++ b/src/pages/Maintainers.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from 'react'; +import { useEffect, useState } from 'react'; import { Github, Twitter, Globe, MapPin, Users } from 'lucide-react'; import { getMaintainers, type Maintainer } from '../services/github'; @@ -26,7 +26,7 @@ export function Maintainers() { if (loading) { return (
-
+
); } @@ -46,10 +46,9 @@ export function Maintainers() {
-

Meet Our Maintainers

-

- These dedicated individuals work tirelessly to make Linux Mint one of - the best Linux distributions available. +

Meet Our Maintainers

+

+ These dedicated individuals work tirelessly to make Snigdha OS one of the best Linux distributions available.

@@ -65,16 +64,16 @@ export function Maintainers() { function MaintainerCard({ maintainer }: { maintainer: Maintainer }) { return ( -
+
{maintainer.name
-

{maintainer.name || maintainer.login}

-

@{maintainer.login}

+

{maintainer.name || maintainer.login}

+

@{maintainer.login}

@@ -85,33 +84,33 @@ function MaintainerCard({ maintainer }: { maintainer: Maintainer }) {
{maintainer.location && (
- + {maintainer.location}
)}
- - {maintainer.followers} followers ยท {maintainer.following} following + + {maintainer.followers} followers | {maintainer.following} following
-
+
- + {maintainer.twitterUsername && ( - + )} {maintainer.blog && ( @@ -119,12 +118,12 @@ function MaintainerCard({ maintainer }: { maintainer: Maintainer }) { href={maintainer.blog} target="_blank" rel="noopener noreferrer" - className="text-gray-600 hover:text-green-600" + className="text-indigo-500 hover:text-indigo-700 transition-colors duration-200" > - + )}
); -} \ No newline at end of file +}