upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
3 changed files with 77 additions and 9434 deletions
Showing only changes of commit e9befb035d - Show all commits

9486
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,15 +12,12 @@
}, },
"dependencies": { "dependencies": {
"@mapbox/rehype-prism": "^0.6.0", "@mapbox/rehype-prism": "^0.6.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "10.2.0",
"@tailwindcss/forms": "^0.3.2", "@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.4.0", "@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.5", "autoprefixer": "^10.2.5",
"gray-matter": "^4.0.2", "gray-matter": "^4.0.2",
"image-size": "1.0.0", "image-size": "1.0.0",
"next": "10.2.0", "next": "10.2.3",
"next-mdx-remote": "^3.0.1", "next-mdx-remote": "^3.0.1",
"next-seo": "4.24.0", "next-seo": "4.24.0",
"next-themes": "^0.0.14", "next-themes": "^0.0.14",
@ -38,7 +35,7 @@
"tailwindcss": "^2.1.1" "tailwindcss": "^2.1.1"
}, },
"devDependencies": { "devDependencies": {
"@next/bundle-analyzer": "10.2.0", "@next/bundle-analyzer": "10.2.3",
"@svgr/webpack": "^5.5.0", "@svgr/webpack": "^5.5.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^7.17.0", "eslint": "^7.17.0",

View File

@ -1,26 +1,22 @@
import '@/css/tailwind.css' import '@/css/tailwind.css'
import { MDXProvider } from '@mdx-js/react'
import { ThemeProvider } from 'next-themes' import { ThemeProvider } from 'next-themes'
import { DefaultSeo } from 'next-seo' import { DefaultSeo } from 'next-seo'
import Head from 'next/head' import Head from 'next/head'
import { SEO } from '@/components/SEO' import { SEO } from '@/components/SEO'
import LayoutWrapper from '@/components/LayoutWrapper' import LayoutWrapper from '@/components/LayoutWrapper'
import MDXComponents from '@/components/MDXComponents'
export default function App({ Component, pageProps }) { export default function App({ Component, pageProps }) {
return ( return (
<ThemeProvider attribute="class"> <ThemeProvider attribute="class">
<MDXProvider components={MDXComponents}> <Head>
<Head> <meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="width=device-width, initial-scale=1" name="viewport" /> </Head>
</Head> <DefaultSeo {...SEO} />
<DefaultSeo {...SEO} /> <LayoutWrapper>
<LayoutWrapper> <Component {...pageProps} />
<Component {...pageProps} /> </LayoutWrapper>
</LayoutWrapper>
</MDXProvider>
</ThemeProvider> </ThemeProvider>
) )
} }