// portfolio/about.js
import { Developer } from './core';
/**
* Chhith Vachhy โ Graphic Designer & Video Editor
* Ambitious IT student, Cambodia ๐ฐ๐ญ
*/
const profile = new Developer({
name: "Chhith Vachhy",
title: "Graphic Designer & Video Editor",
location: "467 5MC, Phnom Penh, Cambodia",
focus: "Computer Science / Software Development",
bio: `
Ambitious IT student specializing in Computer Science or Software Development.
Currently honing skills in programming, database management, and system
administration through coursework and hands-on projects. Passionate about
applying classroom knowledge to real-world tech challenges in Cambodia's
digital landscape โ eager to contribute to software development and IT
support while continuing to grow professionally.
`,
languages: { khmer: 100, english: 60 },
hobbies: ["traveling", "gaming", "music", "camping", "editing"],
});
export default profile;