Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
],
Expand Down Expand Up @@ -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: {},
Expand Down
22 changes: 11 additions & 11 deletions docs/src/styles/typography.scss
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
8 changes: 0 additions & 8 deletions web/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down