Skip to content

Instantly share code, notes, and snippets.

@0x1ad2
Created April 22, 2020 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x1ad2/ae970fa22b92765298c203a551ec0631 to your computer and use it in GitHub Desktop.
Save 0x1ad2/ae970fa22b92765298c203a551ec0631 to your computer and use it in GitHub Desktop.
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*CAL6MRkz-KF6U2oZY4JWJg@2x.png" />
<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