14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
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>
|
|
);
|
|
}
|