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