diff --git a/components/HeroIcons.js b/components/HeroIcons.js
index 8da9fbfa..61e3ded8 100644
--- a/components/HeroIcons.js
+++ b/components/HeroIcons.js
@@ -32,4 +32,23 @@ const ArrowPath = ({ className }) => {
}
-export { Moon, Sun, Home, User, ArrowPath }
+
+const ChevronLeft = ({ className }) => {
+ return
+}
+
+const ChevronRight = ({ className }) => {
+ return
+}
+
+const InformationCircle = ({ className }) => {
+ return
+}
+
+export { Moon, Sun, Home, User, ArrowPath, ChevronLeft, ChevronRight, InformationCircle }
diff --git a/themes/plog/components/BottomNav.js b/themes/plog/components/BottomNav.js
index 5567e3dc..0a1d3182 100644
--- a/themes/plog/components/BottomNav.js
+++ b/themes/plog/components/BottomNav.js
@@ -5,6 +5,7 @@ import CONFIG from '../config'
import { SvgIcon } from './SvgIcon'
import { MenuItemDrop } from './MenuItemDrop'
import FullScreenButton from '@/components/FullScreenButton'
+import InformationButton from './InformationButton'
/**
* 桌面端底部导航
@@ -15,7 +16,7 @@ const BottomNav = props => {
const { navBarTitle, siteInfo } = props
return <>
-
+
@@ -28,17 +29,20 @@ const BottomNav = props => {
{navBarTitle
? (
-
- {navBarTitle}
-
+
+
+ {navBarTitle}
+
+
)
: (
- {siteInfo?.title}
+ {siteInfo?.title}
{' '}{siteInfo?.description}
)}
+ {/* 右下角菜单栏 */}
>
@@ -78,7 +82,10 @@ const MenuList = props => {
{links?.map(link => )}
-
-
+
+
+ -
+
diff --git a/themes/plog/components/Footer.js b/themes/plog/components/Footer.js
index e2b296b5..2a6bdcb9 100644
--- a/themes/plog/components/Footer.js
+++ b/themes/plog/components/Footer.js
@@ -1,12 +1,9 @@
import BLOG from '@/blog.config'
-import DarkModeButton from '@/components/DarkModeButton'
import Vercel from '@/components/Vercel'
export const Footer = (props) => {
const d = new Date()
const currentYear = d.getFullYear()
- const { post } = props
- const fullWidth = post?.fullWidth ?? false
const copyrightDate = (function() {
if (Number.isInteger(BLOG.SINCE) && BLOG.SINCE < currentYear) {
@@ -15,18 +12,11 @@ export const Footer = (props) => {
return currentYear
})()
- return