From 785d119324e1fc076d0267ce453c1845f000c7d3 Mon Sep 17 00:00:00 2001 From: Matt Dunn-Rankin Date: Sun, 10 May 2020 01:01:14 -0700 Subject: [PATCH] set explicit page title on homepage --- src/app/HomePage.js | 60 +++++++++++++++++++++++++-------------------- 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/src/app/HomePage.js b/src/app/HomePage.js index d26c980..ee25aa7 100644 --- a/src/app/HomePage.js +++ b/src/app/HomePage.js @@ -10,6 +10,7 @@ import { useTheme, useToast, } from "@chakra-ui/core"; +import { Helmet } from "react-helmet"; import { useHistory } from "react-router-dom"; import { useLazyQuery } from "@apollo/react-hooks"; @@ -20,33 +21,38 @@ import SpeciesColorPicker from "./SpeciesColorPicker"; function HomePage() { return ( - - - - - Dress to Impress - - - - - or - - - - + <> + + Dress to Impress + + + + + + Dress to Impress + + + + + or + + + + + ); }