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 */}
);