diff --git a/package.json b/package.json
index 5e821b34..d1d3eeb3 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,6 @@
"@contentful/rich-text-plain-text-renderer": "^13.4.0",
"@contentful/rich-text-react-renderer": "^15.0.0",
"@contentful/rich-text-types": "^14.1.0",
- "@justfixnyc/contentful-common-strings": "^0.1.0",
"@justfixnyc/geosearch-requester": "^0.0.6",
"@justfixnyc/util": "^0.4.1",
"@lingui/react": "^2.8.3",
@@ -78,9 +77,8 @@
"scripts": {
"postinstall": "lingui compile",
"lingui": "lingui",
- "build": "yarn contentful-common-strings && gatsby build",
- "develop": "yarn contentful-common-strings --dev && gatsby develop",
- "contentful-common-strings": "contentful-common-strings fetch -o src/common-strings.json",
+ "build": "gatsby build",
+ "develop": "gatsby develop",
"format": "prettier --write '**/*.tsx'",
"prettier": "prettier",
"prettier:check": "prettier \"**/*.{ts,tsx,js,scss}\" --check",
diff --git a/src/components/header.tsx b/src/components/header.tsx
index 42b17008..2d1b0d4b 100644
--- a/src/components/header.tsx
+++ b/src/components/header.tsx
@@ -3,18 +3,12 @@ import { Trans } from "@lingui/macro";
import "../styles/header.scss";
import { LocaleLink } from "../components/locale-link";
-import { useCurrentLocale } from "../util/use-locale";
-import { ContentfulCommonStrings } from "@justfixnyc/contentful-common-strings";
import _commonStrings from "../common-strings.json";
-import { documentToReactComponents } from "@contentful/rich-text-react-renderer";
-import { INLINES } from "@contentful/rich-text-types";
import { OutboundLink } from "../util/links";
import FocusTrap from "focus-trap-react";
import { FooterLanguageToggle } from "./footer";
import classnames from "classnames";
-const commonStrings = new ContentfulCommonStrings(_commonStrings as any);
-
const isDemoSite = process.env.GATSBY_DEMO_SITE === "1";
export const CAREERS_PAGE_URL = "https://justfix.breezy.hr/";
@@ -70,38 +64,6 @@ const useScrollDirection = (): "up" | "down" => {
return scrollDir;
};
-const MoratoriumBanner: React.FC<{}> = () => {
- const [isVisible, setVisibility] = useState(true);
- const locale = useCurrentLocale();
-
- const content = commonStrings.get("covidMoratoriumBanner", locale);
- if (!content) return null;
-
- return (
-