developer.js
1/**
2 * Welcome to my portfolio
3 * I'm Md Naim Hossen
4 * Full Stack Developer
5 */
6
7class Developer {
8 constructor() {
9 this.name = "Md Naim Hossen";
10 this.role = "Full Stack Developer";
11 this.skills = ["JavaScript", "React", "Node.js", "Next.js"];
12 this.contact = {
13 email: "developernaim83@gmail.com",
14 github: "https://github.com/naiem9009",
15 linkedin: "https://www.linkedin.com/in/md-naim-hossen-b44a72267"
16 };
17 }
18
19 sayHello() {
20 console.log(`Hi there! I'm ${this.name}, a ${this.role}.`);
21 console.log("Welcome to my portfolio!");
22 return this;
23 }
24
25 getProjects() {
26 // Navigate to projects page
27 window.location.href = "/projects";
28 }
29}
30
31// Initialize developer
32const naim = new Developer();
33
34// Say hello
35naim.sayHello();
React
Node.js
Next.js
Loading...
Loading...
Loading...
My Skills
A comprehensive set of technical skills I've developed through years of experience and continuous learning.
Always Learning
The tech world evolves rapidly, and I'm committed to staying at the forefront. Currently exploring: AI integration, Web3 technologies, and advanced animation techniques.
AI Integration
65% Proficiency
Web3
45% Proficiency
3D Animation
70% Proficiency
My Services
Specialized services tailored to meet your development needs with modern technologies and best practices.
contact.js ~
▋
function getInTouch() {
console.log("Have a project in mind or want to collaborate? I'd love to hear from you!");
}
getInTouch();
contact-info.json ~
// Contact Information
{
"Phone": {},
"value": "+8801776556776",
"action":
"Email": {},
"value": "developernaim83@gmail.com",
"action":
"Location": {}
"value": "Dhaka, Bangladesh",
}
message-form.jsx ~
// Send me a message
function ContactForm() {
}
export default ContactForm;