first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import {Link} from 'react-router-dom';
import {CustomMenu} from '../../../menus/custom-menu';
import {useSettings} from '../../../core/settings/use-settings';
export function AuthLayoutFooter() {
const {branding} = useSettings();
return (
<div className="pt-42 pb-32 flex items-center gap-30 text-sm text-muted mt-auto">
<Link className="hover:text-fg-base transition-colors" to="/">
© {branding.site_name}
</Link>
<CustomMenu
menu="auth-page-footer"
orientation="horizontal"
itemClassName="hover:text-fg-base transition-colors"
/>
</div>
);
}