+ 'hover:text-blue-500 dark:hover:text-blue-400 cursor-pointer hover:underline ' }>
{post.title}
-
+
{formatDateFmt(post.lastEditedTime, 'yyyy/MM/dd')}
diff --git a/components/SideArea.js b/components/SideArea.js
index ca3b0eda..8af1c25d 100644
--- a/components/SideArea.js
+++ b/components/SideArea.js
@@ -1,4 +1,4 @@
-import React from 'react'
+import React, { useEffect } from 'react'
import MenuButtonGroup from '@/components/MenuButtonGroup'
import InfoCard from '@/components/InfoCard'
import TagGroups from '@/components/TagGroups'
@@ -10,6 +10,7 @@ import { useGlobal } from '@/lib/global'
import Toc from '@/components/Toc'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faAngleDoubleRight, faArchive, faTags, faThList } from '@fortawesome/free-solid-svg-icons'
+const adsInit = false
/**
* 侧边平铺
@@ -25,6 +26,7 @@ import { faAngleDoubleRight, faArchive, faTags, faThList } from '@fortawesome/fr
*/
const SideArea = ({ title, tags, currentTag, post, posts, categories, currentCategory, currentSearch }) => {
const { locale } = useGlobal()
+
return