feat: no more vercel, next. now vite and nix
This commit is contained in:
parent
fc80ead81e
commit
bf5900edbb
28 changed files with 4099 additions and 1554 deletions
16
src/components/header.tsx
Normal file
16
src/components/header.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue