diyaa.de/components/SiteFooter.tsx
2026-03-13 03:56:40 +01:00

26 lines
750 B
TypeScript

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