Skip to content

Commit

Permalink
update learn landing page title
Browse files Browse the repository at this point in the history
  • Loading branch information
mimiflynn committed Dec 8, 2023
1 parent 4510663 commit 9cc16d6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions site/src/pages/exercises/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react'
import { graphql, Link } from 'gatsby'
import React from 'react';
import { graphql, Link } from 'gatsby';

import Layout from '../../components/layout'
import Seo from '../../components/seo'
import Layout from '../../components/layout';
import Seo from '../../components/seo';

const CurriculumPage = ({ data, location }) => {
const siteTitle = data.site.siteMetadata.title
const siteTitle = data.site.siteMetadata.title;

return (
<Layout location={location} title={siteTitle}>
Expand All @@ -19,7 +19,7 @@ const CurriculumPage = ({ data, location }) => {
<div className="pane">
<header className="content">
<h2>
<span>CPX Training Workshops</span>
<span>Learn</span>
</h2>
</header>
<section className="content">
Expand Down Expand Up @@ -95,10 +95,10 @@ const CurriculumPage = ({ data, location }) => {
</article>
</div>
</Layout>
)
}
);
};

export default CurriculumPage
export default CurriculumPage;

export const pageQuery = graphql`
query {
Expand All @@ -108,4 +108,4 @@ export const pageQuery = graphql`
}
}
}
`
`;

0 comments on commit 9cc16d6

Please sign in to comment.