11 lines
442 B
TypeScript
11 lines
442 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">Privacy</a> and <a className="underline" href="https://openreplay.com/terms.html" target="_blank">Terms</a>.
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Copyright;
|