53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
export type ExperienceItem = {
|
|
id: string;
|
|
role: string;
|
|
company: string;
|
|
companyUrl?: string;
|
|
period: string;
|
|
type: "fulltime" | "freelance" | "internship";
|
|
description: string;
|
|
highlights: string[];
|
|
};
|
|
|
|
export const experience: ExperienceItem[] = [
|
|
{
|
|
id: "norisk-client",
|
|
role: "Developer",
|
|
company: "NoRisk Client",
|
|
companyUrl: "https://noriskclient.com",
|
|
period: "2025 — Present",
|
|
type: "fulltime",
|
|
description: "Full-stack development for NoRisk Client, a Minecraft client. Client (Fabric), backend, web and Tauri desktop app.",
|
|
highlights: [
|
|
"Minecraft client development with Fabric",
|
|
"Backend services and web stack",
|
|
"Desktop app with Tauri",
|
|
],
|
|
},
|
|
{
|
|
id: "fiverr",
|
|
role: "Freelance Developer",
|
|
company: "Fiverr",
|
|
companyUrl: "https://fiverr.com",
|
|
period: "2021 — Present",
|
|
type: "freelance",
|
|
description: "Freelance developer on Fiverr. Delivering web, backend and app projects for clients worldwide.",
|
|
highlights: [
|
|
"Consistently active since 2021",
|
|
"Wide range of projects: web apps, APIs, automation, and more",
|
|
],
|
|
},
|
|
{
|
|
id: "content-creator",
|
|
role: "Developer for Content Creators",
|
|
company: "Various clients",
|
|
period: "2020 — Present",
|
|
type: "freelance",
|
|
description: "Development for content creators: tools, integrations, websites and custom solutions.",
|
|
highlights: [
|
|
"Ongoing since 2020",
|
|
"Custom tools and workflows for streamers, YouTubers and creators",
|
|
],
|
|
},
|
|
];
|