openreplay/frontend/app/components/shared/Copyright.tsx
2024-01-18 09:10:38 -05:00

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;