Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

An app that gamifies how a group of people treat each other. It's really fun! My wife came up with the idea and our whole family played it on vacation. It changed how we treated each other and was super fun.

To begin with, we're aiming the app at families. We might also branch-out to work teams as a team-building game.
To begin with, we're aiming the app at families. Later, we might also branch-out to work teams as a team-building game.

Being nice rocks.
Being nice rocks.
7 changes: 7 additions & 0 deletions pages/temp.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@ import styled from "styled-components";
import Layout from "../components/layout";
import { Container, Main } from "../components/_sharedStyles";

const FunkyP = styled.p`
background-color: pink;
margin: 36px;
padding: 8px 12px;
border-radius: 4px;
`;

export default function Temp() {
return (
<Container>
<Main>
<p>This is the `Temp` component!</p>
<p>This is a new paragraph!</p>
<FunkyP>Pink paragraphs are really neat!</FunkyP>
</Main>
</Container>
);
Expand Down