Skip to content

Commit

Permalink
Add missing page titles
Browse files Browse the repository at this point in the history
  • Loading branch information
philmartin1 committed Jul 7, 2020
1 parent 59a8a07 commit 38b837a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/pages/requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
Tooltip,
PseudoBox,
} from "@chakra-ui/core"
import SEO from "../components/seo"

export default () => {
const [requests, setRequests] = useState([])
Expand All @@ -34,6 +35,7 @@ export default () => {

return (
<>
<SEO title="Request open-source alternatives" />
<Box
bg="white"
boxShadow="0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)"
Expand Down
8 changes: 7 additions & 1 deletion src/templates/index-with-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { useBottomScrollListener } from "react-bottom-scroll-listener"
import { Box, Text, Icon } from "@chakra-ui/core"
import { graphql } from "gatsby"
import { useLocalJsonForm } from "gatsby-tinacms-json"
import SEO from "../components/seo"
import ClientSearch from "../components/ClientSearch"

const SearchTemplate = props => {
Expand All @@ -25,7 +26,12 @@ const SearchTemplate = props => {

return (
<>
<ClientSearch comps={allComps} loadCount={loadCount} mainInfo={mainInfo} />
<SEO title="Find open-source alternatives for your favorite apps" />
<ClientSearch
comps={allComps}
loadCount={loadCount}
mainInfo={mainInfo}
/>
</>
)
}
Expand Down

0 comments on commit 38b837a

Please sign in to comment.