src pages about.md
👁️ Preview
In [1]:
# About Me
> A passionate IT student with a knack for problem-solving.

## Table of Contents
- Personal Introduction
- My Journey
- Skills & Expertise
- Certificates
Out [1]:

About Me

A passionate IT student with a knack for problem-solving and a drive to create impactful technology solutions.

🎓 UTHM Student 💼 3+ Years IT Experience 💻 IT Support Intern @ DayOne
In [2]:
const developer = {
  introduction: "IT undergraduate at UTHM...",
  journey: "From IT events to troubleshooting..."
};

console.log(developer);
Out [2]:

👤 Personal Introduction

I am an IT undergraduate at Universiti Tun Hussein Onn Malaysia with hands-on experience in technical support, leadership, and multimedia content creation. I thrive on solving IT problems, optimizing systems, and delivering creative solutions using technology.

🛤️ My Journey

My experience ranges from managing IT events and troubleshooting systems to designing multimedia content and leading student organizations. I believe in combining technical expertise with strong people skills to deliver efficient and user-friendly IT solutions.

In [3]:
const goals = {
  shortTerm: "IT Internship at MNC",
  focus: ["Cloud Computing", "Network Security"],
  location: "Malaysia"
};
Out [3]:

💻 Technical Skills Overview

I specialize in IT infrastructure, web development, mobile app development with Flutter, and multimedia design. My technical foundation includes networking, system administration, and emerging technologies like cloud computing and AI.

🎯 Career Goals

Currently, I am expanding my practical experience as an IT Support Intern at DayOne, while completing my final year at UTHM. I am eager to contribute to large-scale IT infrastructure, cloud computing, and automated deployments.

In [4]:
import skills from './data/skills.json';

// Render skill matrix with proficiency levels
skills.forEach(category => console.table(category));
Out [4]:

My Skillset

🎨 Frontend

React Next.js Astro Tailwind CSS HTML/CSS

📱 Mobile

Flutter

⚙️ Backend

Python (FastAPI) C++

🗄️ Database

PostgreSQL (Supabase) Firebase NoSQL

☁️ DevOps & Cloud

Docker AWS (EC2) GCP Vercel Railway CI/CD

🛠️ Tools

Git Figma

Soft Skills

🧩 Problem-Solving 💬 Communication 👥 Leadership 🤝 Team Collaboration
In [5]:
import certificates from './data/certificates.json';

// Display verified certifications
certificates.map(cert => console.log(`✅ ${cert.name}`));