about.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// about.js - Personal Information

const developer = {
  name: "Yogesh",
  role: "Full Stack Developer",
  location: "India, TamilNadu",
  experience: 1,
  
  bio: `
    Passionate full-stack developer with 1 years of experience
    building modern web applications. I love creating efficient,
    scalable solutions and learning new technologies.
    
    When I'm not coding, you can find me on reddit.com and chess.com,
    or contributing to open source projects.
  `,
  
  currentFocus: [
    "Django, Flask & RestAPI",
    "HTML, Bootstrap & Javascript",
    "Docker",
    "DevOps & CI/CD"
  ],
  
  getQuotes() {
    return "Spring is the time of plans and projects. ― Leo Tolstoy, Anna Karenina";
  }
};

export default developer;
📍 Line 1, Column 1 UTF-8 JavaScript
🔄 Git: main ✓ All changes saved