first commit

This commit is contained in:
2026-03-10 11:45:54 +08:00
commit e06d464a74
231 changed files with 15232 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Button } from "@heroui/react";
import { Link as RouterLink } from "react-router-dom";
export default function AboutPage() {
return (
<div className="py-16">
<h1>About</h1>
<Button as={RouterLink} to="/">Back</Button>
</div>
);
}