init project files

This commit is contained in:
!verity
2026-03-16 21:25:53 +01:00
commit 2045808f00
40 changed files with 3436 additions and 0 deletions

52
content/experience.ts Normal file
View File

@@ -0,0 +1,52 @@
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",
],
},
];