portfolio.tsx
$ _
export default function Portfolio() {

  class Developer {

    name      = "Jabulani Mokoena";
    title     = "Graduate";
    location = "Meyerton, Gauteng";

    getCareerObjectives() {
      return (
        "Motivated IT graduate from North-West University,"
        "specialising in Systems Development and Business Intelligence,"
        "graduating May 2026."
        "Eager to contribute to innovative tech solutions and grow as a developer."
      );
    }

}
  const projects = [

Beauty Platform

A full-featured salon booking and inspiration platform where users can discover styles, book appointments, and stylists can manage their portfolios.

Next.jsNode.jsCloudinary

Student Portal

An integrated learning system combining theory modules and practical exercises with progress tracking and assessment tools for students and educators.

ReactNode.jsMySQL

Data Dashboard

An analytics dashboard surfacing labour market trends and inflation insights through interactive visualisations built with Python and Power BI.

PythonPower BI
  const education = {

BSc Information Technology

North-West University

specialisation:"Systems Development & Business Intelligence"
status:Graduated 2026

National Senior Certificate

Lekoa-Shandu Secondary school

specialisation:"Mathematics & Science"
status:Matric 2021
  }

  return (
    <Portfolio />
  )
}