Skip to content

Commit

Permalink
fix head of best chart page
Browse files Browse the repository at this point in the history
  • Loading branch information
Holtz Yan authored and Holtz Yan committed Aug 29, 2023
1 parent 404f9ac commit 09c3d5e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 9 additions & 4 deletions src/pages/best-python-chart-examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { Button, Col } from 'react-bootstrap';
import ChartImage from '../components/ChartImage';
import Spacing from '../components/Spacing';
import { listOfBestCharts } from '../util/list-of-best-charts';
import { SEO } from '../components/SEO';

const chartDescription = (
<>
Expand Down Expand Up @@ -39,12 +40,16 @@ const chartDescription = (
</>
);

export const Head = () => (
<SEO
title="Best Python Chart Examples"
seoDescription="A selection of the best graphs made with python, coming with in-depth tutorials and reproducible code."
/>
);

export default function Beeswarm() {
return (
<Layout
title="Best Python Chart Examples"
seoDescription="A selection of the best graphs made with python, coming with in-depth tutorials and reproducible code."
>
<Layout>
<TitleAndDescription
title="Best Python Chart Examples"
description={chartDescription}
Expand Down
1 change: 0 additions & 1 deletion src/pages/boxplot.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { Matplotlib, Seaborn } from '../components/MiscellaneousLogos';
import { Button, Col } from 'react-bootstrap';
import CodeChunk from '../components/CodeChunk';
import ChartImage from '../components/ChartImage';
import FunctionExploration from '../components/FunctionExploration';
import Spacing from '../components/Spacing';
import { SEO } from '../components/SEO';

Expand Down

0 comments on commit 09c3d5e

Please sign in to comment.