diff options
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) => { |
