Created
April 22, 2020 12:20
-
-
Save 0x1ad2/ae970fa22b92765298c203a551ec0631 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from "styled-components"; | |
const Placeholder = styled.div` | |
margin-top: 25vh; | |
text-align: center; | |
font-family: Arial, Helvetica, sans-serif; | |
img { | |
width: 100px; | |
} | |
h1 { | |
color: #4a566e; | |
} | |
`; | |
function Index() { | |
return ( | |
<Placeholder> | |
<img src="https://cdn-images-1.medium.com/max/222/1*[email protected]" /> | |
<h1>Woo-hoo you've created</h1> | |
<h1> your first Next.js app 🎉</h1> | |
</Placeholder> | |
); | |
} | |
export default Index; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment