Files
maqt-desktop/src/pages/XixiHaha.tsx
Chen Gu 5bd314deb2 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
2026-05-09 00:31:09 +08:00

17 lines
566 B
TypeScript

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>
);
}