diff --git a/components/BlogPostCard.js b/components/BlogPostCard.js index cbe94dbd..82a1b5ff 100644 --- a/components/BlogPostCard.js +++ b/components/BlogPostCard.js @@ -1,12 +1,12 @@ import BLOG from '@/blog.config' +import { useGlobal } from '@/lib/global' +import { faAngleRight, faFolder } from '@fortawesome/free-solid-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import Image from 'next/image' import Link from 'next/link' import React from 'react' -import Image from 'next/image' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faAngleDoubleRight, faFolder } from '@fortawesome/free-solid-svg-icons' -import TagItemMini from './TagItemMini' import { Code, Collection, CollectionRow, Equation, NotionRenderer } from 'react-notion-x' -import { useGlobal } from '@/lib/global' +import TagItemMini from './TagItemMini' const BlogPostCard = ({ post, showSummary }) => { const { locale } = useGlobal() @@ -17,7 +17,7 @@ const BlogPostCard = ({ post, showSummary }) => {