18 lines
521 B
TypeScript
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;
|