diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 498d12ebf1..a176b98fd7 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -51,8 +51,8 @@ const config = { [ "posthog-docusaurus", { - apiKey: process.env.POSTHOG_PROJECT_API_KEY, - appUrl: process.env.POSTHOG_APP_URL, // optional + apiKey: process.env.POSTHOG_PROJECT_API_KEY || "XXX", + appUrl: process.env.POSTHOG_APP_URL || "XXX", // optional enableInDevelopment: false, // optional }, ], @@ -93,7 +93,7 @@ const config = { }, // GTM is always inactive in development and only active in production to avoid polluting the analytics statistics. googleTagManager: { - containerId: process.env.GTM_ID, + containerId: process.env.GTM_ID || "XXX", }, // Will be passed to @docusaurus/plugin-content-pages (false to disable) // pages: {}, diff --git a/docs/src/styles/typography.scss b/docs/src/styles/typography.scss index 475041c43a..42953ac2b2 100644 --- a/docs/src/styles/typography.scss +++ b/docs/src/styles/typography.scss @@ -1,38 +1,38 @@ h1, .h1 { - font-size: 40px; line-height: 48px; + font-size: 40px; @apply font-bold text-black dark:text-white; } h2, .h2 { - font-size: 36px; - line-height: 42px; + font-size: 32px; @apply font-bold text-black dark:text-white; + line-height: 40px; } h3, .h3 { - font-size: 32px; - line-height: 40px; + font-size: 28px; @apply font-bold text-black dark:text-white; + line-height: 40px; } h4, .h4 { - font-size: 28px; - line-height: 40px; + font-size: 24px; @apply font-bold text-black dark:text-white; + line-height: 32px; } h5, .h5 { - font-size: 24px; - line-height: 32px; + font-size: 20px; @apply font-bold text-black dark:text-white; + line-height: 28px; } h6, .h6 { - font-size: 20px; - line-height: 28px; + font-size: 16px; @apply font-bold text-black dark:text-white; + line-height: 24px; } p { line-height: 24px; diff --git a/web/app/layout.tsx b/web/app/layout.tsx index fd100975f9..38dee20567 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -2,18 +2,10 @@ import { PropsWithChildren } from 'react' import { Metadata } from 'next' -// import { Inter } from 'next/font/google' - import Providers from '@/containers/Providers' import '@/styles/main.scss' -// const inter = Inter({ -// subsets: ['latin'], -// display: 'swap', -// variable: '--font-inter', -// }) - export const metadata: Metadata = { title: 'Jan', description: