Files
twenty_crm/packages/twenty-website/src/app/components/Logo.tsx
Félix Malfait 5ef5bbdc4d Marketing website POC (#3139)
First website POC
2023-12-23 10:08:55 +01:00

17 lines
356 B
TypeScript

import styled from "@emotion/styled";
const Link = styled.a`
display:block;
image-rendering: pixelated;
flex-shrink: 0;
background-size: 100% 100%;
border-radius: 8px;
height: 40px;
width: 40px;
background-image: url("images/core/logo.svg");
opacity: 1;`;
export const Logo = () => {
return <Link href="/" />;
};