Codester06 - Overview

class Developer {
  name: string = "Vivek Sharma";
  location: string = "India 🇮🇳";
  title: string = "Full Stack Developer";

  expertise: {
    frontend: string[] = ["React", "Next.js", "Vue.js"];
    backend: string[] = ["Node.js", "Express", "FastAPI"];
    mobile: string[] = ["React Native", "Android Studio"];
    cloud: string[] = ["AWS", "Firebase", "Vercel"];
    databases: string[] = ["MongoDB", "PostgreSQL", "Redis"];
  };
  
  hobbies: string[] = ["Gaming 🎮", "Photography 📸", "Music 🎵"];
  funFact: string = "I debug code faster than I solve Rubik's cube! 🧩";
  
  contactMe(): string {
    return "viveksharma.vs0615@gmail.com";
  }
  
  getPortfolio(): string {
    return "https://vivek-sharma-three.vercel.app/";
  }
}

const vivek = new Developer();
console.log("Welcome to my GitHub! 👋");