Files
Proxmox/components/Footer.tsx
2024-05-02 14:10:11 +02:00

10 lines
198 B
TypeScript

import React from "react";
const year = new Date().getFullYear();
export default function Footer() {
return (
<div className="mt-20 w-full bg-secondary py-6 text-center">{year}</div>
);
}