Add env-based site configuration

This commit is contained in:
2025-11-17 16:32:09 +08:00
parent 48521d6f5c
commit 10948aa2ca
5 changed files with 24 additions and 11 deletions

View File

@@ -1,8 +1,9 @@
import { siteConfig } from '@/lib/config';
export function SiteFooter() {
return (
<footer className="border-t py-4 text-center text-sm text-gray-500">
© {new Date().getFullYear()} Your Name
© {new Date().getFullYear()} {siteConfig.author}
</footer>
);
}