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 = ( - - - +const LockIcon = ( + + + ); -const InfoIcon = ( - - - - +const PersonIcon = ( + + + ); @@ -24,25 +22,28 @@ export default function HeaderButtons() { href="/admin" target="_self" rel="noopener noreferrer" - className="h-6 sm:h-8 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 rounded" + className="focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 rounded" > - Admin Login {}} /> - {/* If your server for about me is running on a different port, change the port number here */} - About Me {}} />