openreplay/frontend/app/components/shared/Copyright.tsx
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

18 lines
521 B
TypeScript

import React from 'react';
function Copyright() {
return (
<div className="fixed bottom-0 m-auto text-center mb-6 color-gray-medium">
© 2024 OpenReplay. All rights reserved.
{' '}
<a className="underline" href="https://openreplay.com/privacy.html" target="_blank" rel="noreferrer">Privacy</a>
{' '}
and
{' '}
<a className="underline" href="https://openreplay.com/terms.html" target="_blank" rel="noreferrer">Terms</a>
.
</div>
);
}
export default Copyright;