diff --git a/app/components/Header.tsx b/app/components/Header.tsx index 6121ce8..29a1b83 100644 --- a/app/components/Header.tsx +++ b/app/components/Header.tsx @@ -1,45 +1,188 @@ "use client"; +import {useState} from "react"; import Link from "next/link"; -import { useState } from "react"; +import {Roboto} from "next/font/google"; + +const inter = Roboto({weight: '400', subsets: ["latin"]}); export default function Header() { - const [isOpen, setIsOpen] = useState(false); + const [isSidebarOpen, setIsSidebarOpen] = useState(false); - return ( -
- -
- ); + + + + + + + +
© 2025 Dennis
+ + + ); } \ No newline at end of file diff --git a/app/components/Hero.tsx b/app/components/Hero.tsx index 54bf80d..cc715c5 100644 --- a/app/components/Hero.tsx +++ b/app/components/Hero.tsx @@ -1,18 +1,21 @@ import Link from "next/link"; export default function Hero() { - return ( -
-

Hi, I am Dennis

-

A passionate developer and student.

- - - -
- ); + return ( +
+
+

Hi, I am Dennis

+

A passionate developer and student.

+ + + +
+
+ ); } diff --git a/app/globals.css b/app/globals.css index c41f7e1..57eec3e 100644 --- a/app/globals.css +++ b/app/globals.css @@ -5,6 +5,7 @@ /* Custom Global Styles */ body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + background-color: #e7e7e7; } .neumorphism { diff --git a/app/page.tsx b/app/page.tsx index 5ba01a7..90b362e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -10,12 +10,13 @@ export default function Home() { return ( <>
-
- - - -
-
+
+
+ + + +
); } \ No newline at end of file