Files
portfolio_v2/src/components/sections/Home.jsx
T

34 lines
1.8 KiB
React

import RevealOnScroll from "../RevealOnScroll";
function Home() {
return (
<section id="home" className="min-h-screen flex items-center justify-center relative">
<RevealOnScroll>
<div className="text-center z-10 px-4">
<h1 className="text-5xl md:text-7xl font-bold mb-6 bg-gradient-to-r from-blue-500 to-cyan-400 bg-clip-text text-transparent leading-right">
Alexis Pencrane
</h1>
<p className="text-gray-500 text-lg mb-8 max-w-lg mx-auto">
I&apos;m a student in Networks and Telecommunications, specializing in Cybersecurity. I love learning new things related to networking and cybersecurity.
</p>
<div className="flex justify-center space-x-4">
<a href="#about" className="bg-blue-500 text-white py-3 px-6 rounded font-medium transition relative overflow-hidden hover:-translate-y-0.5 hover:shadow-[0_0_15px_rgba(59, 130, 246, 0.4)]">
Learn more about me
</a>
<a href="#projects" className="bg-blue-500 text-white py-3 px-6 rounded font-medium transition relative overflow-hidden hover:-translate-y-0.5 hover:shadow-[0_0_15px_rgba(59, 130, 246, 0.4)]">
View Projects
</a>
<a href="#contact" className="border border-blue-500/50 text-blue-500 py-3 px-6 rounded font-medium transition-all duration-200 hover:-translate-y-0.5 hover:shadow-[0_0_15px_rgba(59, 130, 246, 0.2)] hover:bg-blue-500/10">
Contact Me
</a>
</div>
</div>
</RevealOnScroll>
</section>
)
}
export default Home;