This commit is contained in:
2025-01-05 21:05:18 +01:00
parent 143bd821e5
commit 33b8b44b1f
13 changed files with 166 additions and 42 deletions

View File

@@ -1,5 +1,3 @@
// app/components/Hero.tsx
import Link from "next/link";
export default function Hero() {
@@ -9,9 +7,9 @@ export default function Hero() {
className="text-center p-20 bg-gradient-to-r from-purple-400 to-blue-500 dark:from-gray-800 dark:to-gray-900 text-white"
>
<h1 className="text-5xl font-bold">Hi, I am Dennis</h1>
<p className="mt-4 text-xl">A student</p>
<p className="mt-4 text-xl">A passionate developer and student.</p>
<Link href="#projects">
<button className="mt-6 inline-block px-6 py-2 bg-black text-white rounded hover:bg-gray-800 dark:bg-white dark:text-black dark:hover:bg-gray-300">
<button className="mt-6 inline-block px-6 py-2 bg-black text-white rounded hover:bg-gray-800 dark:bg-white dark:text-black dark:hover:bg-gray-300 transition">
See My Work
</button>
</Link>