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 ( -
+
{/* eslint-disable-next-line @next/next/no-img-element */} {""}
diff --git a/app/components/Section.tsx b/app/components/Section.tsx index 2af9962..f48e61b 100644 --- a/app/components/Section.tsx +++ b/app/components/Section.tsx @@ -2,7 +2,7 @@ export const Section = ({ children, }: Readonly<{ children: React.ReactNode }>) => { return ( -
+
{children}
);