import { Developer } from '@fatima/portfolio';
import { Skills, Experience } from '@fatima/expertise';
interface SeniorEngineer {
name: string;
role: "Senior Software Engineer";
specialization: string[];
location: "Sahiwal, Punjab, Pakistan";
}
const fatima: SeniorEngineer = {
name: "Fatima Maqsood",
role: "Senior Software Engineer",
specialization: [
"Odoo ERP Development",
"Blockchain Development",
"Full Stack Development",
"Python & JavaScript",
],
location: "Sahiwal, Punjab, Pakistan",
};
const stats = {
projectsCompleted: 28, // Successful projects delivered
happyClients: 11, // Across multiple countries
experienceYears: 2.5,
satisfactionRate: "100%", // 5-star ratings
education: "BSCS from COMSATS",
};
/**
* Available for freelance opportunities
* Specialized in Odoo ERP & Blockchain
* Let's build something amazing together!
*/
fatima.getInTouch(); // Click to contact
fatima.viewProjects(); // See portfolio
fatima.downloadResume(); // Get CV/Resume
export default fatima;