From 217c1508a64125c442d3bf66a12a562aac6e51a1 Mon Sep 17 00:00:00 2001 From: Morph01 <145839520+Morph01@users.noreply.github.com> Date: Sat, 10 Feb 2024 19:36:35 +0100 Subject: [PATCH] section My Portfolio in progression --- src/Pages/Home/MyPortfolio.jsx | 66 ++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/Pages/Home/MyPortfolio.jsx diff --git a/src/Pages/Home/MyPortfolio.jsx b/src/Pages/Home/MyPortfolio.jsx new file mode 100644 index 0000000..6ca8075 --- /dev/null +++ b/src/Pages/Home/MyPortfolio.jsx @@ -0,0 +1,66 @@ +import data from "../../data/index.json"; + +export default function MyPortfolio() { + return ( +
+
+
+

Recent Projects

+

My Portfolio

+
+
+ +
+
+
+ {data?.portfolio?.map((item, index) => ( +
+
+ Placeholder +
+
+
+

{item.title}

+

{item.description}

+
+

+ {item.link} + + + +

+
+
+ ))} +
+
+ ); +} \ No newline at end of file