I design and build digital products, developer tools, and systems across Web3, AI, and the modern web.
class Simon extends Person {
constructor() {
super();
this.name = "Simon Cyril";
this.age = 23;
this.work = ["Freelance", "Building Sandworm"];
this.education = ["BSC Benson Idahosa", "Dayspring"];
this.hobbies = ["Drawing", "Playing Piano", "Gaming", "Reading", "Chess"];
}
current_location() {
return " Abuja, Nigeria";
}
next_locations() {
return ["United State?"];
}
currently() {
return {
building: ["Something Amazing"],
learning: ["Data", "Chess"],
};
}
}


