interface Developer { name: string; location: string; focus: string[]; passions: string[]; motto: string; }const Dawood: Developer = { name: "Dawood Sajid", location: "Pakistan ", focus: [ "AI-Integrated Web Applications", "Generative AI & LLMs", "RAG (Retrieval-Augmented Generation)" ], passions: [ "Clean Architecture", "High-Performance APIs", "Scalable System Design" ], motto: "Code. Create. Innovate. ⚡" };