Skip to content

Commit

Permalink
Update Release Page after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ohrie committed Oct 4, 2023
1 parent fde3c7c commit a181333
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/ReleasePage/ReleasePage.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { PageProps } from 'gatsby';
import { PageProps, HeadFC } from 'gatsby';
import React from 'react';
import { Content, HelmetSeo, Hero } from '~/components/Layout';
import { Content, Hero, MetaTags } from '~/components/Layout';
import { Section } from '~/components/Layout/Section';

import { planfProseClasses } from '~/components/core/articleProseClasses';

const title = 'Plan F Release Page';

const ReleasePage: React.FC<PageProps> = ({ pageContext }) => {
const title = 'Plan F Release Page';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const { GH_ACTION_URL, GH_TOKEN } = pageContext;
Expand All @@ -25,7 +26,6 @@ const ReleasePage: React.FC<PageProps> = ({ pageContext }) => {

return (
<>
<HelmetSeo noindex title={title} />
<Hero bgColor="bg-green-500" title={title} />
<Section className={planfProseClasses}>
<Content>
Expand All @@ -44,3 +44,5 @@ const ReleasePage: React.FC<PageProps> = ({ pageContext }) => {
};

export default ReleasePage;

export const Head: HeadFC = () => <MetaTags noindex title={title} />;

0 comments on commit a181333

Please sign in to comment.