From 1663d1628aa39ba11f42416a06eaa1d8e408dbd5 Mon Sep 17 00:00:00 2001 From: Chneemann Date: Sun, 26 Jul 2026 09:31:47 +0200 Subject: [PATCH] add portfolio section --- src/app/page.tsx | 2 ++ src/components/Portfolio.tsx | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/components/Portfolio.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index b76dbad..dae3483 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import Hero from "../components/Hero"; import About from "../components/About"; import Skills from "../components/Skills"; import Contact from "../components/Contact"; +import Portfolio from "../components/Portfolio"; export default function Home() { return ( @@ -9,6 +10,7 @@ export default function Home() { + ); diff --git a/src/components/Portfolio.tsx b/src/components/Portfolio.tsx new file mode 100644 index 0000000..7442ad0 --- /dev/null +++ b/src/components/Portfolio.tsx @@ -0,0 +1,18 @@ +export default function Portfolio() { + return ( +
+ {/* Title */} +
+

+ // 03. Projects +

+

+ Portfolio. +

+
+
+ ); +}