blob: a0c5ee8ef89b639534c6c635d6eb8462dcaac0e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react';
import styled from 'styled-components'
const SpacedTitle = styled.div`
margin-top: 10vh
`
const Header = () => {
return (
<SpacedTitle>
<h1>
<span role="img" aria-label="clipboard">📋 </span>
ctrl-v
</h1>
<h3>a modern, <a href="https://github.com/jackyzha0/ctrl-v" target="_blank" rel="noopener noreferrer">open-source</a> pastebin with latex and markdown rendering support</h3>
</SpacedTitle>
);
}
export default Header;
|