diff --git a/src/app/BadgeButton.tsx b/src/app/BadgeButton.tsx
index a8330cd..3e6c8a6 100644
--- a/src/app/BadgeButton.tsx
+++ b/src/app/BadgeButton.tsx
@@ -6,26 +6,30 @@ export default function BadgeButton({
color = '#2563eb',
icon,
onClick,
+ labelColor,
}: {
label: string;
color?: string;
icon: React.ReactNode;
onClick?: () => void;
+ labelColor?: string;
}) {
return (
);
}
\ No newline at end of file
diff --git a/src/app/HeaderButtons.tsx b/src/app/HeaderButtons.tsx
index f8f5451..da5bef5 100644
--- a/src/app/HeaderButtons.tsx
+++ b/src/app/HeaderButtons.tsx
@@ -1,19 +1,17 @@
'use client';
import BadgeButton from './BadgeButton';
-import AboutButton from './AboutButton';
-const PersonIcon = (
-