profile.ts
1 interface Developer {
2 name: "Mike Chumba";
3 role: "Full Stack Engineer & Mentor";
4 location: "Nairobi, Kenya";
5 background: "Electrical Engineer";
6 skills: [
7 "Full Stack Development",
8 "Cloud Infrastructure",
9 "DevOps & Automation"
10 ];
11 passion: "Building & sharing knowledge";
12 }
13
14 const intro = (dev: Developer) => {
15 return `Hello! I'm ${dev.name},
16 an Electrical Engineer turned Developer.
17 I build modern web apps and share
18 my journey in technology.`;
19 };
20
21 // Let's connect!
22 console.log(intro(mike));
23
24 // Quick Links
25 const links = {
26 blog: "/posts/",
27 about: "/about/",
28 email: "info@drmhse.com"
29 };