diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-15 17:16:54 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-15 17:16:54 +0100 |
| commit | 0bc323a777a607090af87636026f668104cf8a0c (patch) | |
| tree | 0d1bff955bc0d7b524317557c2d25afbe00b76ef /src/pages | |
| parent | 516f8256a4f72c7a01752d9aa4e035276fb08b51 (diff) | |
fix: change branding title tag on homepage
I forgot to pass isHome arg...
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 6654617..f51dec9 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -21,7 +21,7 @@ const Home: NextPageWithLayout<HomePageProps> = ({ data }) => { }; Home.getLayout = function getLayout(page: ReactElement) { - return <Layout>{page}</Layout>; + return <Layout isHome={true}>{page}</Layout>; }; export const getStaticProps: GetStaticProps = async (ctx) => { |
