Fix wrong twenty logo url It does not fix all the https://github.com/twentyhq/twenty/issues/11744 issue, but this is a small step. The other step is pretty big so I split the ticket in 2 PRs
18 lines
332 B
TypeScript
18 lines
332 B
TypeScript
import { Img } from '@react-email/components';
|
|
|
|
const logoStyle = {
|
|
marginBottom: '40px',
|
|
};
|
|
|
|
export const Logo = () => {
|
|
return (
|
|
<Img
|
|
src="https://app.twenty.com/images/icons/windows11/Square150x150Logo.scale-100.png"
|
|
alt="Twenty logo"
|
|
width="40"
|
|
height="40"
|
|
style={logoStyle}
|
|
/>
|
|
);
|
|
};
|