Skip to content

Update title to match domain name #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 24, 2019
Merged
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
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
designpatternsgame.com
4 changes: 2 additions & 2 deletions __tests__/components/__snapshots__/Header.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ exports[`<Header /> component renders with DARK theme 1`] = `
<h1
className="c7"
>
Design Patterns
Design Patterns Game
</h1>
<h2
className="c8"
Expand Down Expand Up @@ -454,7 +454,7 @@ exports[`<Header /> component renders with LIGHT theme 1`] = `
<h1
className="c7"
>
Design Patterns
Design Patterns Game
</h1>
<h2
className="c8"
Expand Down
4 changes: 2 additions & 2 deletions __tests__/components/__snapshots__/Title.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ exports[`<Title /> component renders with a DARK theme 1`] = `
<h1
className="c1"
>
Design Patterns
Design Patterns Game
</h1>
<h2
className="c2"
Expand Down Expand Up @@ -68,7 +68,7 @@ exports[`<Title /> component renders with a LIGHT theme 1`] = `
<h1
className="c1"
>
Design Patterns
Design Patterns Game
</h1>
<h2
className="c2"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Title.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const SubHeading = styled.h2`

export const Title = () => (
<TitleContainer>
<Heading>Design Patterns</Heading>
<Heading>Design Patterns Game</Heading>
<SubHeading>implemented in JavaScript</SubHeading>
</TitleContainer>
);
Expand Down