Добавить юридический футер

This commit is contained in:
2026-05-21 23:51:49 +05:00
parent 8efaafb833
commit 633c338c16
5 changed files with 39 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
import { Text } from '@mantine/core';
import classes from './Footer.module.css';
const LEGAL_NAME = 'ROSETTA CLOUD SERVICES LIMITED';
export function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className={classes.footer}>
<Text c="dimmed" fz="sm" ta="center" className={classes.legal}>
&copy; {currentYear} {LEGAL_NAME}. All rights reserved.
</Text>
</footer>
);
}