const developer = "Md Naim Hossen";

naim@developer-portfolio ~
Welcome to my interactive portfolio terminal. Type 'help' to see available commands.
$whoami
Md Naim Hossen
$pwd
/home/portfolio
$echo "Welcome to my portfolio!"
Welcome to my portfolio!
$
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: "naiem9009@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();

About Me

I'm a passionate full-stack developer with expertise in modern web technologies. With a strong foundation in both frontend and backend development, I create elegant, efficient, and user-friendly applications.

5+
Years of Experience
50+
Projects Completed
20+
Happy Clients
10+
Technologies
skills.js ~
import { skills } from './mySkills';
const displaySkills = () => {
return (
);
};
// Always learning new technologies
// Currently exploring: AI integration, Web3, and advanced animation techniques

My Services

Specialized services tailored to meet your development needs with modern technologies and best practices.

Featured Projects

Explore a selection of my best work, showcasing my skills and expertise in web development.

project-67f0f095b72a6edad0ef9b7f.tsx
Background Remover

const Background Remover = () => {

A full-stack Image Background Removed solution with React, Node.js, and MongoDB, Clerk.

React
Node.js
MongoDB
Clerk
project-67f0f095b72a6edad0ef9b7e.tsx
Software Development Company

const Software Development Company = () => {

Software Development Company portfolio website

Reactjs
Prisma
Nextjs
Postgresql
project-67f0f81badd3601c026e91ca.tsx
Portfolio Website

const Portfolio Website = () => {

Bring Your Ideas To Life With Stunning Motion Graphics

Nextjs
Reactjs
Mongodb
Prisma

Client Testimonials

Don't just take my word for it. Here's what my clients have to say about working with me.

Sarah Johnson

Sarah Johnson

Product Manager at TechCorp

Working with Naim was an absolute pleasure. His technical expertise and attention to detail resulted in a product that exceeded our expectations. He's not just a developer, but a problem solver who truly understands business needs.

Michael Chen

Michael Chen

Startup Founder at InnovateLabs

Naim helped transform our idea into a fully functional platform in record time. His ability to suggest improvements and implement complex features made all the difference. I highly recommend his services to anyone looking for quality development work.

Emily Rodriguez

Emily Rodriguez

Marketing Director at CreativeEdge

Our website redesign project was in capable hands with Naim. He understood our brand vision perfectly and delivered a responsive, modern site that has significantly improved our conversion rates. A true professional who delivers on time and on budget.

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": "naiem9009@gmail.com",
"action":
},
"Location": {
"value": "Dhaka, Bangladesh",
}
}
social-links.js ~
// Connect with me
const socialLinks = {
"github": "https://github.com/naiem9009",
"linkedin": "https://www.linkedin.com/in/md-naim-hossen-b44a72267"
}
message-form.jsx ~
// Send me a message
function ContactForm() {
}
export default ContactForm;