feat: add contact section

This commit is contained in:
Chneemann 2026-07-24 13:04:38 +02:00
parent 6b638413b2
commit 3b3521ca91
2 changed files with 20 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import Hero from "../components/Hero"; import Hero from "../components/Hero";
import About from "../components/About"; import About from "../components/About";
import Skills from "../components/Skills"; import Skills from "../components/Skills";
import Contact from "../components/Contact";
export default function Home() { export default function Home() {
return ( return (
@ -8,6 +9,7 @@ export default function Home() {
<Hero /> <Hero />
<About /> <About />
<Skills /> <Skills />
<Contact />
</section> </section>
); );
} }

View file

@ -0,0 +1,18 @@
export default function Contact() {
return (
<section
id="contactme"
className="relative py-6 px-4 md:px-6 max-w-5xl mx-auto scroll-mt-15"
>
{/* Title */}
<div className="mb-6 space-y-1 text-right flex flex-col items-end">
<p className="text-xs font-mono text-blue-500 tracking-wider uppercase">
// 03. Get in Touch
</p>
<h2 className="text-3xl font-bold text-white tracking-tight">
Contact me<span className="text-blue-500">.</span>
</h2>
</div>
</section>
);
}