portfolio.ts
about.ts
projects.ts
John.Doe.Dev
RS

John Doe

const developer = "Full-Stack Web Developer";

function About()
// Get to know me and my background
AboutMe.ts
class DeveloperProfile {
getBio() {
return (

"I'm a passionate web developer with 5+ years of experience building modern, responsive web applications. My focus is on creating intuitive user experiences with clean, maintainable code. I specialize in React, TypeScript, and modern backend technologies."

"Throughout my career, I've worked with various technologies and frameworks, always striving to stay up-to-date with the latest industry trends and best practices. I'm a strong believer in continuous learning and improvement."

);
}
}
function Skills()
// Technologies and tools I work with
JavaScript
TypeScript
React
Next.js
Astro
Node.js
Express
Tailwind CSS
SQL
MongoDB
Git
Docker
function Projects()
// Some of my recent work
function WorkExperience()
// My professional journey
TechCorp Inc..ts
class SeniorFrontendDeveloper {
// Position: Senior Frontend Developer
TechCorp Inc. 2021 - Present
responsibilities() {
return [
  • "Led the development of the company's flagship SaaS platform" ,
  • "Implemented CI/CD pipelines reducing deployment time by 40%" ,
  • "Mentored junior developers and conducted code reviews"
];
}
}
WebSolutions Ltd..ts
class FrontendDeveloper {
// Position: Frontend Developer
WebSolutions Ltd. 2018 - 2021
responsibilities() {
return [
  • "Developed responsive web applications for various clients" ,
  • "Migrated legacy applications to modern React architecture" ,
  • "Implemented performance optimizations improving load time by 35%"
];
}
}
function Contact()
// Let's talk about your project
contact.ts
const Contact = () => {
const message = "I'm currently open to freelance projects and full-time opportunities. Feel free to reach out if you want to collaborate!";
return (
john.doe@example.com
San Francisco, CA
// Social Links
);
};
export default Contact;