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();
Loading...
Loading...
Loading...
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.
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",
}
message-form.jsx ~
// Send me a message
function ContactForm() {
}
export default ContactForm;