data: Hooked projects to links

This commit is contained in:
2026-02-23 16:00:01 +05:30
parent b36319f5f4
commit af591f57f0
6 changed files with 33 additions and 60 deletions

View File

@@ -1,46 +0,0 @@
import { Chromium, Cpu, Gamepad, Layout } from 'lucide-react';
export const PROJECTS = [
{
id: 'Krohnkite',
github: 'https://github.com/sortedcord/krohnkite-i3',
title: 'Krohnkite i3',
category: 'Window Management',
tech: ['Typescript', 'Kwin API', 'QML'],
desc: 'A modified stripped down version of Krohnkite that implements i3-style tiling in KDE Plasma (Wayland).',
icon: <Layout className="w-5 h-5" />,
},
{
id: 'leenim',
github: 'https://github.com/sortedcord/leenim',
title: 'Leenim',
category: 'Desktop Application Development',
tech: ['React', 'Rust', 'Tauri', 'Python'],
desc: 'A Cross platform Video Editor style application for creating mathematical illustrations with Manim.',
icon: <Cpu className="w-5 h-5" />,
},
{
id: 'gippity-pruner',
github: 'https://github.com/sortedcord/gippity-pruner',
title: 'Gippity Pruner',
category: 'Browser Extension for Chromium & Gecko',
tech: ['JavaScript'],
desc: 'Improve ChatGPT performance in long conversations, without losing your context!',
icon: <Chromium className='w-5 h-5' />,
},
{
id: 'omnia',
github: 'https://github.com/sortedcord/omnia',
title: 'Omnia',
category: 'AI-Native Computing Systems',
tech: ['Typescript'],
desc: 'A game engine specification that defines an AI driven, intent-based architecture for building determinist-first interactive worlds.',
icon: <Gamepad className="w-5 h-5" />,
},
];
export const LAB_NOTES = [
{ date: '2026-02-14', title: 'GT730 and handling some Nvidia Voodoo Magic' },
{ date: '2026-01-28', title: "So, how's that VPS business going?" },
{ date: '2025-12-10', title: 'Injecting dynamic themes via CSS variable mutations' },
];

View File

@@ -7,6 +7,7 @@ export type Project = {
stars?: number;
forks?: number;
title: string;
link: string;
category: string;
tech: string[];
ribbon: string | null;
@@ -23,6 +24,7 @@ export const PROJECTS: Project[] = [
{
id: 'Krohnkite',
github: 'https://github.com/sortedcord/krohnkite-i3',
link: 'https://github.com/sortedcord/krohnkite-i3',
title: 'Krohnkite i3',
category: 'Window Management',
tech: ['Typescript', 'Kwin API', 'QML'],
@@ -33,6 +35,7 @@ export const PROJECTS: Project[] = [
{
id: 'leenim',
github: 'https://github.com/sortedcord/leenim',
link: 'https://github.com/sortedcord/leenim',
title: 'Leenim',
category: 'Desktop Application Development',
tech: ['React', 'Rust', 'Tauri', 'Python'],
@@ -43,6 +46,7 @@ export const PROJECTS: Project[] = [
{
id: 'gippity-pruner',
github: 'https://github.com/sortedcord/gippity-pruner',
link: 'https://github.com/sortedcord/gippity-pruner',
title: 'Gippity Pruner',
category: 'Browser Extension',
tech: ['JavaScript'],
@@ -53,6 +57,7 @@ export const PROJECTS: Project[] = [
{
id: 'omnia',
github: 'https://github.com/sortedcord/omnia',
link: 'https://github.com/sortedcord/omnia',
title: 'Omnia',
category: 'AI-Native Computing Systems',
tech: ['Typescript'],