main
Some checks failed
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Has been cancelled

This commit is contained in:
Harun CAN
2026-03-09 02:16:10 +03:00
parent c1f94439ab
commit d09b1fbb6f
166 changed files with 5267 additions and 18148 deletions

13
src/components/Footer.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { useLanguage } from '../i18n/LanguageContext';
export default function Footer() {
const { t } = useLanguage();
return (
<footer className="py-8 border-t border-white/10 text-center">
<p className="text-xs font-mono text-slate-500">
© {new Date().getFullYear()} HARUNCAN <span className="text-transparent bg-clip-text bg-gradient-to-r from-[#C70039] to-[#FF5733]">SoundArts</span>
</p>
</footer>
);
}