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