Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Mail, Github, Linkedin, Microscope } from "lucide-react";
import { Mail, Github, Linkedin } from "lucide-react";

const Footer = () => {
return (
Expand Down Expand Up @@ -30,15 +30,6 @@ const Footer = () => {
<Linkedin className="w-8 h-8" />
<span className="sr-only">LinkedIn</span>
</a>
<a
href="https://aicell.io/authors/hugodk/"
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground hover:text-foreground transition-colors duration-300"
>
<Microscope className="w-8 h-8" />
<span className="sr-only">AICell Lab Profile</span>
</a>
</div>

{/* Year */}
Expand Down
25 changes: 3 additions & 22 deletions src/components/HeroSection.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { m } from "framer-motion";
import { useState, useEffect } from "react";
import type { ComponentType } from "react";
import { Mail, GithubIcon, LinkedinIcon, Microscope } from "lucide-react";
import { Mail, GithubIcon, LinkedinIcon } from "lucide-react";

// Workaround for framer-motion v12 type issues with React 18
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down Expand Up @@ -59,17 +59,7 @@ const HeroSection = () => {
>
<span className="text-foreground">Hi, I'm Hugo,</span>
<br />
<span className="text-foreground">PhD{" "}</span>
Student at
<br />
<a
href="https://aicell.io/authors/hugodk/"
target="_blank"
rel="noopener noreferrer"
className="gradient-text hover:drop-shadow-[0_0_15px_rgba(168,85,247,0.5)] duration-300 transition-all"
>
AICell Lab
</a>
<span className="gradient-text hover:drop-shadow-[0_0_15px_rgba(168,85,247,0.5)] duration-300 transition-all">AI engineer</span>
</MotionH1>

{/* Description */}
Expand All @@ -79,7 +69,7 @@ const HeroSection = () => {
transition={{ duration: 0.8, delay: 0.7 }}
className="text-lg md:text-xl lg:max-w-2xl text-muted-foreground/80 max-w-lg mx-auto leading-relaxed font-sans mb-10 short:text-base short:mb-6"
>
Currently building the next generation of AI-powered tools for scientific discovery. Passionate about technologies that benefit society.
Passionate about AI and software engineering, with exciting projects on the way. Always building things that matter.
</MotionP>

{/* Social Links */}
Expand Down Expand Up @@ -114,15 +104,6 @@ const HeroSection = () => {
<LinkedinIcon className="w-6 h-6 md:w-7 md:h-7 short:w-5 short:h-5" />
<span className="sr-only">LinkedIn</span>
</a>
<a
href="https://aicell.io/authors/hugodk/"
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground hover:text-foreground transition-colors duration-300"
>
<Microscope className="w-6 h-6 md:w-7 md:h-7 short:w-5 short:h-5" />
<span className="sr-only">AICell Lab Profile</span>
</a>
</MotionDiv>
</MotionDiv>

Expand Down