Files
landing/src/components/Footer/Footer.tsx

25 lines
921 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Anchor, 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}. Все права защищены.
</Text>
<nav className={classes.links} aria-label="Юридическая информация">
<Anchor href="/privacy/" size="sm" c="dimmed">
Политика конфиденциальности
</Anchor>
<Anchor href="/terms/" size="sm" c="dimmed">
Условия использования
</Anchor>
</nav>
</footer>
);
}