diff --git a/components/animatedLink.tsx b/components/animatedLink.tsx
index 8e03faa..b8eb3ae 100644
--- a/components/animatedLink.tsx
+++ b/components/animatedLink.tsx
@@ -5,16 +5,26 @@ interface AnimatedLinkProps {
href: string;
children: React.ReactNode;
className?: string;
+ underlineColor?: string;
+ textColor?: string;
}
-const AnimatedLink = ({ href, children, className = '' }: AnimatedLinkProps) => {
+const AnimatedLink = ({
+ href,
+ children,
+ className = '',
+ underlineColor = 'bg-black dark:bg-white',
+ textColor = 'text-black dark:text-white'
+}: AnimatedLinkProps) => {
return (
{children}
-
+
);
};