💄 Update landing page (#734)

This commit is contained in:
Luke Vella 2023-07-13 11:57:23 +01:00 committed by GitHub
parent 3b8cbbd2f2
commit 0e6c3c1115
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 1939 additions and 1874 deletions

View file

@ -1,14 +1,20 @@
import "react-i18next";
import app from "../public/locales/en/app.json";
import blog from "../public/locales/en/blog.json";
import common from "../public/locales/en/common.json";
import home from "../public/locales/en/home.json";
import pricing from "../public/locales/en/pricing.json";
interface I18nNamespaces {
app: typeof app;
common: typeof common;
home: typeof home;
pricing: typeof pricing;
blog: typeof blog;
}
declare module "i18next" {
interface CustomTypeOptions {
defaultNS: "app";
defaultNS: "common";
resources: I18nNamespaces;
returnNull: false;
}