chore: initial commit - maqt-desktop v0.2

- Phase 1-5: UI framework, auth, weapon schemes, color filters, system optimization
- Industrial/tech design style with Chinese localization
- Points to gch3n.online/delta backend API
- Hardware monitor, filter editor, and all module pages
This commit is contained in:
Chen Gu
2026-05-09 00:31:09 +08:00
commit 5bd314deb2
80 changed files with 12217 additions and 0 deletions

16
src/pages/XixiHaha.tsx Normal file
View File

@@ -0,0 +1,16 @@
import React from 'react';
import Card from '../components/ui/Card';
export default function XixiHaha() {
return (
<div className="flex flex-col gap-3 p-3 flex-1">
<div className="flex items-center justify-between border-b border-[#333] pb-2">
<h1 className="text-[11px] font-bold tracking-[0.15em] uppercase"></h1>
<span className="tech-sn">DEV-03</span>
</div>
<Card className="p-3" serial="WIP-03">
<p className="text-[9px] font-mono text-[#555]"></p>
</Card>
</div>
);
}