forked from Rosetta/landing
Добавить юридический футер
This commit is contained in:
16
src/components/Footer/Footer.tsx
Normal file
16
src/components/Footer/Footer.tsx
Normal 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}>
|
||||
© {currentYear} {LEGAL_NAME}. All rights reserved.
|
||||
</Text>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user