21 lines
548 B
TypeScript
21 lines
548 B
TypeScript
import type { Locale } from "@/lib/i18n";
|
|
import type { CommonContent } from "@/content/types";
|
|
|
|
type SiteFooterProps = {
|
|
locale: Locale;
|
|
common: CommonContent;
|
|
};
|
|
|
|
export default function SiteFooter({ locale, common }: SiteFooterProps) {
|
|
const year = new Date().getFullYear();
|
|
|
|
return (
|
|
<footer className="site-footer">
|
|
<div className="container footer-content">
|
|
<p>{common.footerRights.replace("{year}", String(year))}</p>
|
|
<p className="locale-badge">{locale.toUpperCase()}</p>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|