/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ import React from "react"; import Header from "../Header/Header"; import Button from "../Button/Button"; function Signup(props) { const { locale, pockethost, utmSource, utmCampaign, utmContent } = props; const utmParams = `utm_source=${utmSource}${ utmCampaign && utmContent ? `&utm_campaign=${utmCampaign}&utm_content=${utmContent}` : `` }`; return (

{locale?.startsWith("en") ? ( <>


Get thought-provoking article recommendations

Find stories that go deep into a subject or offer a new perspective.

) : (

)}
); } export default Signup;