From 2131d5fec97f6163678fdec40dd2d6e9f7a5e58c Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Thu, 30 Oct 2025 23:40:37 +0000 Subject: restructure repo into a monorepo --- projects/about/src/app/mentoring/page.js | 64 ++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 projects/about/src/app/mentoring/page.js (limited to 'projects/about/src/app/mentoring') diff --git a/projects/about/src/app/mentoring/page.js b/projects/about/src/app/mentoring/page.js new file mode 100644 index 0000000..1a7e265 --- /dev/null +++ b/projects/about/src/app/mentoring/page.js @@ -0,0 +1,64 @@ +"use client"; + +export default () => { + return ( + <> +
+
+

What can I teach you?

+
+ +
+ {[ + // { + // title: "Basics of X language", + // description: + // "From JavaScript to Python, I can help you get started with the basics of a language.", + // classes: "bg-gradient-to-r from-cyan-500 to-blue-500", + // bgImage: "https://placehold.co/500/lime/white", + // url: "/mentoring/basics", + // }, + // { + // title: "Basics of X language", + // description: + // "From JavaScript to Python, I can help you get started with the basics of a language.", + // classes: "bg-gradient-to-br from-blue-500 to-cyan-500", + // url: "/mentoring/basics", + // }, + { + title: "Web Basics", + description: + "Learn HTML, CSS & JavaScript to Create Stunning Websites!", + classes: "bg-gradient-to-br from-blue-500 to-cyan-500 text-black", + bgImage: + "https://public-files.gumroad.com/xocc3smd5lmeq7ahiz1o8pggx9z4", + url: "https://zuedev.gumroad.com/l/web-basics?layout=profile", + }, + { + title: "Python Fundamentals", + description: + "Master the Basics of Python & Kickstart Your Coding Journey!", + classes: "bg-gradient-to-br from-blue-500 to-cyan-500 text-black", + bgImage: + "https://public-files.gumroad.com/jjfjnqk9jqfdqidfmzyfqnaht1d2", + url: "https://zuedev.gumroad.com/l/python-fundamentals?layout=profile", + }, + ].map((item) => ( + +

{item.title}

+

{item.description}

+
+ ))} +
+
+ + ); +}; -- cgit v1.2.3