This commit is contained in:
Travis Fischer
2022-10-15 18:06:55 -04:00
parent 3a229e357c
commit 0b82d1dd4a
5 changed files with 4 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
export * from './NotionPage'
export * from './Page404'
export * from './ErrorPage'

View File

@@ -1,3 +1,3 @@
import { Page404 } from '@/components'
import { Page404 } from '@/components/Page404'
export default Page404

View File

@@ -1,8 +1,7 @@
import * as React from 'react'
import { GetStaticProps } from 'next'
import { NotionPage } from '@/components'
import { NotionPage } from '@/components/NotionPage'
import { domain, isDev } from '@/lib/config'
import { getSiteMap } from '@/lib/get-site-map'
import { resolveNotionPage } from '@/lib/resolve-notion-page'

View File

@@ -1,3 +1,3 @@
import { ErrorPage } from '@/components'
import { ErrorPage } from '@/components/ErrorPage'
export default ErrorPage

View File

@@ -1,7 +1,6 @@
import * as React from 'react'
import { NotionPage } from '@/components'
import { NotionPage } from '@/components/NotionPage'
import { domain } from '@/lib/config'
import { resolveNotionPage } from '@/lib/resolve-notion-page'