added pfp, tomi (collaborators)

This commit is contained in:
maybe-asdf 2025-01-06 21:39:59 +01:00
parent b357858cc3
commit 45dbeef2c8
6 changed files with 1855 additions and 160 deletions

1974
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -24,5 +24,10 @@
"tailwindcss": "^3.4.17", "tailwindcss": "^3.4.17",
"typescript": "^5.0.0", "typescript": "^5.0.0",
"vite": "^5.4.11" "vite": "^5.4.11"
},
"dependencies": {
"@sveltejs/adapter-node": "^5.2.11",
"@sveltejs/adapter-vercel": "^5.5.2",
"express": "^4.21.2"
} }
} }

View file

@ -8,26 +8,36 @@
}); });
const collaborators = [ const collaborators = [
{
name: "maybe.asdf",
role: "Project Lead",
description: "Project founder and lead architect of yaerguOS. Oversees the overall direction and development of the distribution.",
image: "/maybe.jpg",
skills: ["System Architecture", "Linux Development", "UI/UX Design"],
links: {
discord: "maybe.asdf"
}
},
{
name: "tomiszivacs",
role: "Brainstormer",
description: "Co-owner, Brainstorms functions and apps. Also designs various elements for the system including icons, wallpaper and many others.",
image: "/tomi.webp",
skills: ["Ideas", "Icons", "Wallpaper Design"],
links: {
discord: "tomiszivacs"
}
},
{ {
name: "spitkov", name: "spitkov",
role: "Web Developer", role: "Web Developer",
description: "Lead web developer responsible for the new YNS CLI and GUI interfaces. Specializes in creating intuitive and efficient user experiences.", description: "Lead web developer responsible for the new YNS CLI and GUI interfaces. Specializes in creating intuitive and efficient user experiences.",
image: "/spitkov.png", image: "/spitkov.png",
skills: ["Web Development", "UI/UX Design", "CLI Development"], skills: ["Web Development", "Server Set-up", "CLI Development"],
links: { links: {
github: "https://github.com/spitkov", github: "https://github.com/spitkov",
discord: "spitkov" discord: "spitkov"
} }
},
{
name: "maybe.asdf",
role: "Project Lead",
description: "Project founder and lead architect of yaerguOS. Oversees the overall direction and development of the distribution.",
image: "/maybe.png",
skills: ["System Architecture", "Linux Development", "Project Management"],
links: {
discord: "maybe.asdf"
}
} }
]; ];
</script> </script>

BIN
static/maybe.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
static/tomi.webp Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,4 +1,5 @@
import adapter from '@sveltejs/adapter-auto'; import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
@ -15,4 +16,5 @@ const config = {
} }
}; };
export default config; export default config;