Skip to content

Commit

Permalink
🖼
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Oct 15, 2022
1 parent 3a229e3 commit 0b82d1d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
3 changes: 0 additions & 3 deletions components/index.ts

This file was deleted.

2 changes: 1 addition & 1 deletion pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { Page404 } from '@/components'
import { Page404 } from '@/components/Page404'

export default Page404
3 changes: 1 addition & 2 deletions pages/[pageId].tsx
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pages/_error.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { ErrorPage } from '@/components'
import { ErrorPage } from '@/components/ErrorPage'

export default ErrorPage
3 changes: 1 addition & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -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'

Expand Down

0 comments on commit 0b82d1d

Please sign in to comment.