amjad-portfolio
Getting things ready…
› loading workspace…
› indexing src/pages/*.tsx
› starting language server
// about.tsx — entry point
import React from "react";
 
const AmjadAlshalabi: React.FC = () => {
Amjad Alshalabi
Amjad Alshalabi<SoftwareEngineer/>Download CV
const profile = {
name: "",
role: "",
location: "",
phone: "+971 501 678 488",
summary: `Software Engineer with deep expertise in architecting and delivering scalable web applications and enterprise-grade systems. My work spans the full stack, building fast and intuitive frontends with React.js and Vue.js, and engineering reliable, high-performance backends using ASP.NET Core, NestJS, Node.js, and Odoo ERP. I approach every project with a systems mindset, thinking about the bigger picture before writing a single line of code. I write code that teams can maintain, extend, and trust, because technical debt is a choice, and I choose not to accumulate it.`,
education: {
degree: "Bachelor of Information Technology Engineering",
university: "Damascus University, Syria",
}
};)
 
return <Portfolio {...profile} />;
}
 
export default AmjadAlshalabi;