Files
twenty/packages/twenty-website/src/app/components/Logo.tsx
Félix Malfait c422045ea6 Marketing improvements 3 (#3175)
* Improve marketing website

* User guide with icons

* Add TOC

* Linter

* Basic GraphQL playground

* Very basic contributors page

* Failed attempt to integrate REST playground

* Yarn

* Begin contributors DB

* Improve contributors page
2023-12-29 11:17:32 +01:00

18 lines
338 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="/" />;
};