mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-06 09:59:00 +02:00
🐛 Fix meta on home page (#839)
This commit is contained in:
parent
cba5126135
commit
8619b97a2c
3 changed files with 5 additions and 5 deletions
|
@ -21,8 +21,6 @@
|
||||||
"freeSchedulingPoll": "Free Scheduling Poll",
|
"freeSchedulingPoll": "Free Scheduling Poll",
|
||||||
"findATime": "Find a Time",
|
"findATime": "Find a Time",
|
||||||
"getStarted": "Get started",
|
"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",
|
"availabilityPoll": "Availability Poll",
|
||||||
"solutions": "Solutions"
|
"solutions": "Solutions"
|
||||||
}
|
}
|
||||||
|
|
|
@ -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.",
|
"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",
|
"new": "New",
|
||||||
"julyRecap": "July Recap",
|
"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."
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,10 +11,10 @@ const Page: NextPageWithLayout = () => {
|
||||||
const { t } = useTranslation(["home"]);
|
const { t } = useTranslation(["home"]);
|
||||||
return (
|
return (
|
||||||
<Marketing
|
<Marketing
|
||||||
title={t("metaTitle", {
|
title={t("home:metaTitle", {
|
||||||
defaultValue: "Rallly - Schedule Group Meetings",
|
defaultValue: "Rallly - Schedule Group Meetings",
|
||||||
})}
|
})}
|
||||||
description={t("metaDescription", {
|
description={t("home:metaDescription", {
|
||||||
defaultValue:
|
defaultValue:
|
||||||
"Create polls and vote to find the best day or time. A free alternative to Doodle.",
|
"Create polls and vote to find the best day or time. A free alternative to Doodle.",
|
||||||
})}
|
})}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue