import Head from "next/head" import classnames from "classnames" import { t, Trans } from "@lingui/macro" import { activate } from "lingui-example/i18n" import styles from "./Layout.module.css" export function Layout({ title = null, className = "", children }) { // Default props can't be translated at module level because active locale // isn't known when module is imported, but rather when component // is rendered. if (title == null) { title = t`Example project using LinguiJS` } return (