From a865055c1f7c26ccafb78b27b069d74647067472 Mon Sep 17 00:00:00 2001 From: schererleander Date: Wed, 25 Jun 2025 16:31:58 +0200 Subject: remove extra icon class --- src/components/Footer.tsx | 27 +++++++++++++++++++++++++-- src/components/GitHubIcon.tsx | 12 ------------ src/components/MailIcon.tsx | 12 ------------ 3 files changed, 25 insertions(+), 26 deletions(-) delete mode 100644 src/components/GitHubIcon.tsx delete mode 100644 src/components/MailIcon.tsx (limited to 'src/components') diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 2caf39d..63ddd9a 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,5 +1,28 @@ -import GitHubIcon from "./GitHubIcon"; -import MailIcon from "./MailIcon"; +function GitHubIcon() { + return ( + + ); +} + +function MailIcon() { + return ( + + ); +} export default function Footer() { const year = new Date().getFullYear(); diff --git a/src/components/GitHubIcon.tsx b/src/components/GitHubIcon.tsx deleted file mode 100644 index c93dbc7..0000000 --- a/src/components/GitHubIcon.tsx +++ /dev/null @@ -1,12 +0,0 @@ -export default function GitHubIcon() { - return ( - - ); -} \ No newline at end of file diff --git a/src/components/MailIcon.tsx b/src/components/MailIcon.tsx deleted file mode 100644 index e710b77..0000000 --- a/src/components/MailIcon.tsx +++ /dev/null @@ -1,12 +0,0 @@ -export default function MailIcon() { - return ( - - ); -} \ No newline at end of file -- cgit v1.3.1