From b1ddacc51f5b497387aaad72be7ade40939f86d5 Mon Sep 17 00:00:00 2001 From: Chneemann Date: Tue, 28 Jul 2026 09:15:39 +0200 Subject: [PATCH] refactor: convert button elements to semantic anchor tags and ignore downloads directory --- .gitignore | 5 ++++- src/components/Hero.tsx | 28 +++++++++++++++++----------- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 8e284d5..572dd60 100644 --- a/.gitignore +++ b/.gitignore @@ -41,4 +41,7 @@ yarn-error.log* next-env.d.ts # Apache server configuration files -htaccess \ No newline at end of file +htaccess + +# Ignore all files in downloads directory +public/assets/downloads/* \ No newline at end of file diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx index 1d29fdc..34a6bad 100644 --- a/src/components/Hero.tsx +++ b/src/components/Hero.tsx @@ -1,11 +1,13 @@ -import Link from "next/link"; import SocialLinks from "./Social"; +/** + * Hero section showcasing intro title, call-to-action links, and personal portrait + */ export default function Hero() { return (
- {/* Left column */} + {/* Main Content & Call to Actions */}
// Hi, my name is @@ -32,24 +34,26 @@ export default function Hero() { */}

- {/* Buttons */} + {/* Action Buttons */}
- Contact me - - + Download CV - +
- {/* Right column */} + {/* Profile Image Frame */}
@@ -62,6 +66,8 @@ export default function Hero() {
+ + {/* Social Media Links Bar */}
);