Initial commit from ux_aura_central

This commit is contained in:
DIVYANSH-675
2026-03-25 01:21:37 +05:30
commit b096f07978
69 changed files with 5922 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
interface FooterProps {
version: string | null;
}
const Footer: React.FC<FooterProps> = ({ version }) => {
return (
<footer className="flex-shrink-0 relative z-10 w-full p-3 text-center text-slate-600 dark:text-slate-400 text-xs border-t border-slate-200 dark:border-slate-800">
<p>© 2025 HumanizeIQ. All Rights Reserved. {version && `v${version}`}</p>
</footer>
);
};
export default Footer;