Skip to content

Commit

Permalink
fix: Page Titles
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydrichards committed Jun 3, 2020
1 parent 42aa91b commit e810e0a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pages/experiment/003.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Layout from "../../components/Layout";
class Experiment003 extends Component {
render() {
return (
<Layout title="Experiment | 001">
<Layout title="Experiment | 003">
<h2>003 - Working with Netlify</h2>
<h4>Date: May 20th 2020</h4>
<p>
Expand Down
2 changes: 1 addition & 1 deletion pages/experiment/004.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Experiment004: React.FC = () => {
));

return (
<Layout>
<Layout title="Experiment | 004">
<h2>004 - Getting D3.js Running </h2>
<h4>Date: May 20th 2020</h4>
<p>Some text that I want to change red...</p>
Expand Down
2 changes: 1 addition & 1 deletion pages/experiment/005.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class Experiment005 extends React.Component {
render() {
const { translateX, translateY } = this.state;
return (
<Layout>
<Layout title="Experiment | 005">
<h2>005 - Setting up Anime.js </h2>
<h4>Date: June 2nd 2020</h4>
<p>
Expand Down
2 changes: 1 addition & 1 deletion pages/experiment/006.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const Experiment006 = () => {
}, []);

return (
<Layout>
<Layout title="Experiment | 006">
<h2>006 - SVG's & Anime.js </h2>
<h4>Date: June 3rd 2020</h4>
<p>
Expand Down
2 changes: 1 addition & 1 deletion pages/experiment/007.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const Experiment007 = () => {
};

return (
<Layout>
<Layout title="Experiment | 007">
<h2>007 - Little SVG System </h2>
<h4>Date: June 3rd 2020</h4>
<p>
Expand Down
5 changes: 5 additions & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ const IndexPage: React.FC = () => (
<a>006 - SVGs & Anime.js</a>
</Link>
</li>
<li>
<Link href="/experiment/007">
<a>007 - Little SVG System</a>
</Link>
</li>
</ul>
</Layout>
);
Expand Down

0 comments on commit e810e0a

Please sign in to comment.