first commit

This commit is contained in:
dela
2026-02-11 19:46:38 +08:00
parent 1c90905716
commit 08ffa06eb4
40 changed files with 4330 additions and 118 deletions

View File

@@ -0,0 +1,13 @@
import { Container } from "./Container";
export function Footer() {
return (
<footer className="py-12 border-t border-neutral-100 mt-24">
<Container>
<p className="text-sm text-neutral-400 tracking-wide">
{new Date().getFullYear()}
</p>
</Container>
</footer>
);
}