This repository was archived by the owner on Feb 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
import PropTypes from 'prop-types'
2
2
import Container from './container'
3
3
import cn from 'classnames'
4
- import { EXAMPLE_PATH } from '@/lib/constants '
4
+ import { EXAMPLE_PATH } from '@/lib/config '
5
5
6
6
export default function Alert ( { preview} ) {
7
7
return (
Original file line number Diff line number Diff line change 1
1
import Container from './container'
2
- import { EXAMPLE_PATH } from '@/lib/constants '
2
+ import { EXAMPLE_PATH } from '@/lib/config '
3
3
4
4
export default function Footer ( ) {
5
5
return (
Original file line number Diff line number Diff line change 1
- import { CMS_NAME , CMS_URL } from '@/lib/constants '
1
+ import { CMS_NAME , CMS_URL } from '@/lib/config '
2
2
3
3
export default function Intro ( ) {
4
4
return (
Original file line number Diff line number Diff line change 1
1
import Head from 'next/head'
2
- import { CMS_NAME , HOME_OG_IMAGE_URL } from '@/lib/constants '
2
+ import { CMS_NAME , HOME_OG_IMAGE_URL } from '@/lib/config '
3
3
4
4
export default function Meta ( ) {
5
5
return (
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import HeroPost from '@/components/hero-post'
6
6
import Intro from '@/components/intro'
7
7
import Layout from '@/components/layout'
8
8
import { getAllPostsForHome } from '@/lib/api'
9
- import { CMS_NAME } from '@/lib/constants '
9
+ import { CMS_NAME } from '@/lib/config '
10
10
11
11
export default function Index ( { allPosts : { edges} , preview} ) {
12
12
const heroPost = edges [ 0 ] ?. node
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import Layout from '@/components/layout'
11
11
import { getAllPostsWithSlug , getPostAndMorePosts } from '@/lib/api'
12
12
import PostTitle from '@/components/post-title'
13
13
import Head from 'next/head'
14
- import { CMS_NAME } from '@/lib/constants '
14
+ import { CMS_NAME } from '@/lib/config '
15
15
import Tags from '@/components/tags'
16
16
17
17
export default function Post ( { post, posts, preview} ) {
You can’t perform that action at this time.
0 commit comments