diff --git a/app/Section/Intro.tsx b/app/Section/Intro.tsx index 3a744c6..693fb9a 100644 --- a/app/Section/Intro.tsx +++ b/app/Section/Intro.tsx @@ -19,26 +19,23 @@ export const Intro = () => {
Photographer
Developer
Self-Hosting admirer
diff --git a/app/components/IconWithText.tsx b/app/components/IconWithText.tsx index 0c35062..2778f7f 100644 --- a/app/components/IconWithText.tsx +++ b/app/components/IconWithText.tsx @@ -2,11 +2,21 @@ type IconWithTextProps = { icon: string; text: string; desc: string; + hoverTextColor?: string | null; }; -export const IconWithText = ({ icon, text, desc }: IconWithTextProps) => { +export const IconWithText = ({ + icon, + text, + desc, + hoverTextColor, +}: IconWithTextProps) => { return ( -