update about and remove strapi
All checks were successful
Deployment / Deploy website (push) Successful in 3m58s
Deployment / Deploy strapi (push) Successful in 3m10s

This commit is contained in:
Benjamin Palko 2025-06-18 13:53:13 -04:00
parent 342a0bffdb
commit 009ec42f3d
8 changed files with 61 additions and 75 deletions

View file

@ -0,0 +1,43 @@
import { BicepsFlexed, Braces, Gamepad2, Globe } from "@lucide/svelte";
import type { Component } from "svelte";
type Item = {
icon: Component;
title: string;
description: string;
};
export const name: string = "Benjamin Palko";
export const titles: string[] = [
"Full Stack Developer",
"Video Game Developer",
];
export const description: string =
"Hi! I'm Ben, a Canadian Software Developer from Ottawa, Canada 🇨. I'm currently a Full Stack Developer and I love to do side projects, learn new things and have fun while doing it. I have participated in Game Jams, fallen down the rabbit hole of Linux Ricing and many other things away from the desk like races, cycling and even wood-working!";
export const activities: Item[] = [
{
icon: Globe,
title: "Web Development",
description: "React, Typescript and Svelte oh my",
},
{
icon: Gamepad2,
title: "Game Development",
description:
"Unreal, Unity, Godot, RPG Maker. The game dev community was at peace until the Unity nation attacked",
},
{
icon: BicepsFlexed,
title: "Athletics",
description: "Self-proclaimed athlete, cyclist, runner and racer",
},
{
icon: Braces,
title: "Linux Ricing",
description:
"Builder of rices, vanquisher of Windows, distributor of open-source",
},
];