Hi, I am Dennis
A passionate developer and student.
diff --git a/app/components/Projects.tsx b/app/components/Projects.tsx
index c4c8806..370879f 100644
--- a/app/components/Projects.tsx
+++ b/app/components/Projects.tsx
@@ -21,7 +21,7 @@ export default function Projects() {
}, []);
return (
-
+
Projects
@@ -29,7 +29,7 @@ export default function Projects() {
{projects.map((project) => (
{project.title}
diff --git a/app/globals.css b/app/globals.css
index 600f6e4..c41f7e1 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -6,3 +6,18 @@
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
+
+.neumorphism {
+ background-color: #f0f0f0;
+ box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
+ transition: box-shadow 0.3s ease, transform 0.3s ease;
+}
+
+.neumorphism:hover {
+ box-shadow: inset 8px 8px 16px #dddddd, inset -8px -8px 16px #ffffff;
+}
+
+.neumorphism:active {
+ translate: 0 0.225em;
+ box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff;
+}
\ No newline at end of file
diff --git a/app/page.tsx b/app/page.tsx
index 5594fc5..5ba01a7 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,4 +1,3 @@
-// app/page.tsx
"use client";
import Header from "./components/Header";
@@ -8,15 +7,15 @@ import Contact from "./components/Contact";
import Footer from "./components/Footer";
export default function Home() {
- return (
- <>
-
-
-
-
-
-
-
- >
- );
-}
+ return (
+ <>
+
+
+
+
+
+
+
+ >
+ );
+}
\ No newline at end of file
diff --git a/public/images/off_white_bg.jpg b/public/images/off_white_bg.jpg
new file mode 100644
index 0000000..be74f01
Binary files /dev/null and b/public/images/off_white_bg.jpg differ