Skip to content

Commit 5aa32ee

Browse files
author
Lumi
committed
feat: add wterm to projects and applets menu
1 parent 846c795 commit 5aa32ee

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

components/layout/header.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,15 @@ export function Header() {
155155
<span className="text-lg">💤</span>
156156
AFK Tracker
157157
</a>
158+
<a
159+
href="https://luinbytes.github.io/wterm/"
160+
target="_blank"
161+
rel="noopener noreferrer"
162+
className="flex items-center gap-3 px-3 py-2 rounded-md hover:bg-white/10 transition-colors text-sm text-gray-300 hover:text-white"
163+
>
164+
<span className="text-lg">⌨️</span>
165+
wterm
166+
</a>
158167
<a
159168
href="https://luinbytes.github.io/shellscribe/"
160169
target="_blank"
@@ -334,6 +343,15 @@ export function Header() {
334343
<span className="text-xl">💤</span>
335344
AFK Tracker
336345
</a>
346+
<a
347+
href="https://luinbytes.github.io/wterm/"
348+
target="_blank"
349+
rel="noopener noreferrer"
350+
className="flex items-center gap-3 px-4 py-3 rounded-lg hover:bg-white/5 transition-colors text-gray-300 hover:text-white"
351+
>
352+
<span className="text-xl">⌨️</span>
353+
wterm
354+
</a>
337355
<a
338356
href="https://luinbytes.github.io/shellscribe/"
339357
target="_blank"

lib/data.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,21 @@ export interface ActivityItem {
2828
// BuildLogItem interface removed - Build Log section replaced with Quick Dev Stats
2929

3030
export const projects: Project[] = [
31+
{
32+
id: "wterm",
33+
name: "wterm",
34+
type: "CLI Tool",
35+
description: "A Warp-inspired terminal emulator. Fast, modern, AI-ready. Built with Go + Bubble Tea.",
36+
longDescription: "wterm is a modern terminal emulator inspired by Warp. Features a beautiful Tokyo Night theme, command block grouping, AI integration (BYOK), and persistent history. Single binary, zero dependencies.",
37+
approach: "Built with Go and the Bubble Tea TUI framework. Uses Lip Gloss for styling with a Tokyo Night-inspired color palette. PTY integration for real shell execution. NLP parser with 39 patterns for command understanding.",
38+
outcome: "In active development. Goal: feature parity with modern terminals like Warp, Alacritty, and Kitty. Focusing on AI integration and developer productivity.",
39+
techStack: ["Go", "Bubble Tea", "Lip Gloss", "PTY", "NLP"],
40+
tags: ["Terminal", "CLI", "Go", "TUI", "AI", "Developer Tools"],
41+
sourceUrl: "https://github.com/luinbytes/wterm",
42+
demoUrl: "https://luinbytes.github.io/wterm/",
43+
featured: true,
44+
lumiApproved: true,
45+
},
3146
{
3247
id: "shellscribe",
3348
name: "ShellScribe",

0 commit comments

Comments
 (0)