first udpate

This commit is contained in:
diyaa
2026-03-13 03:16:25 +01:00
commit 243a182d33
28 changed files with 1144 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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>
);
}