feat: no more vercel, next. now vite and nix

This commit is contained in:
Jet Pham 2026-03-04 22:00:53 -08:00
parent fc80ead81e
commit bf5900edbb
No known key found for this signature in database
28 changed files with 4099 additions and 1554 deletions

16
src/components/header.tsx Normal file
View file

@ -0,0 +1,16 @@
import React from "react";
import Ansi from "./ansi";
interface HeaderProps {
content: string;
className?: string;
}
export default function Header({ content, className }: HeaderProps) {
return (
<div className={className}>
<Ansi>{content}</Ansi>
</div>
);
}