-
-
+
+
+
diff --git a/src/components/InteractiveSystemOverview.tsx b/src/components/InteractiveSystemOverview.tsx
index 4670c05..3479497 100644
--- a/src/components/InteractiveSystemOverview.tsx
+++ b/src/components/InteractiveSystemOverview.tsx
@@ -3,7 +3,7 @@ import { useState } from 'react';
const CONTENT_MODULES = [
{
id: 'bio',
- title: '/home/aditya/bio.txt',
+ title: '/home/sortedcord/bio.txt',
tty: 'tty1',
content: (
diff --git a/src/components/ProjectsSection.tsx b/src/components/ProjectsSection.tsx
index e398cb4..7c28f01 100644
--- a/src/components/ProjectsSection.tsx
+++ b/src/components/ProjectsSection.tsx
@@ -96,9 +96,23 @@ export function ProjectsSection() {
)}
-
- {project.title}
-
+
+ {project.link ? (
+
+ {project.title}
+
+
+ ) : (
+
+ {project.title}
+
+
+ )}
{project.category}
diff --git a/src/components/ThemeMapperModal.tsx b/src/components/ThemeMapperModal.tsx
index 52ba0a6..bf8aaf0 100644
--- a/src/components/ThemeMapperModal.tsx
+++ b/src/components/ThemeMapperModal.tsx
@@ -82,7 +82,7 @@ export function ThemeMapperModal({
,
- },
- {
- 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:
,
- },
- {
- 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:
,
- },
- {
- 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:
,
- },
-];
-
-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' },
-];
diff --git a/src/data/contentData.tsx b/src/data/contentData.tsx
index 22bbf84..6851a2c 100644
--- a/src/data/contentData.tsx
+++ b/src/data/contentData.tsx
@@ -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'],