🐛 Fix meta on home page (#839)

This commit is contained in:
Luke Vella 2023-09-06 18:18:08 +01:00 committed by GitHub
parent cba5126135
commit 8619b97a2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -21,8 +21,6 @@
"freeSchedulingPoll": "Free Scheduling Poll",
"findATime": "Find a Time",
"getStarted": "Get started",
"metaTitle": "Rallly - Schedule Group Meetings",
"metaDescription": "Create polls and vote to find the best day or time. A free alternative to Doodle.",
"availabilityPoll": "Availability Poll",
"solutions": "Solutions"
}

View file

@ -35,5 +35,7 @@
"freeSchedulingPollDescription": "Rallly let's you create beautiful and easy to use scheduling polls so you can find the best time for your next event.",
"new": "New",
"julyRecap": "July Recap",
"pricingUpdates": "Pricing Updates"
"pricingUpdates": "Pricing Updates",
"metaTitle": "Rallly - Schedule Group Meetings",
"metaDescription": "Create polls and vote to find the best day or time. A free alternative to Doodle."
}

View file

@ -11,10 +11,10 @@ const Page: NextPageWithLayout = () => {
const { t } = useTranslation(["home"]);
return (
<Marketing
title={t("metaTitle", {
title={t("home:metaTitle", {
defaultValue: "Rallly - Schedule Group Meetings",
})}
description={t("metaDescription", {
description={t("home:metaDescription", {
defaultValue:
"Create polls and vote to find the best day or time. A free alternative to Doodle.",
})}