summaryrefslogtreecommitdiff
path: root/scripts/about.js
blob: 0f34fe57063a7759b2f4c62b0bbe8eb6c9d8ce18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class About {
    constructor() {}

    Main() {
        const data = `
            <section id='about'>
            <div>
            <h1>About</h1>
            <img src='/img/154553384264124594.avif'/>
            <p>Hi there! I'm Michael, an IT enthusiast who loves learning and is passionate about building a career in this field. As an "Architect" (INTJ-T personality type), I enjoy problem-solving and coming up with innovative solutions. I've had hands-on experience in web development and tech consulting, where I've worked on various projects and helped clients with their IT needs. I'm always eager to explore new technologies and stay updated on industry trends.</p>

            <p>In the next five years, I see myself growing in the IT industry, possibly running my own business, and contributing to its development with fresh ideas. My goal is to build a meaningful and impactful career in IT while inspiring others to do the same!</p>
            </div>
            </section>
        `
        return data
    }
}

module.exports = () => {return new About()}