import PropTypes from 'prop-types' import BLOG from '@/blog.config' import TagsBar from '@/components/TagsBar' import Footer from '@/components/Footer' import React, { useRef } from 'react' import Container from '@/components/Container' import JumpToTop from '@/components/JumpToTop' import SideBar from '@/components/SideBar' import TopNav from '@/components/TopNav' import BlogPostListScrollPagination from '@/components/BlogPostListScrollPagination ' const IndexLayout = ({ tags, posts, page, currentTag, ...customMeta }) => { const meta = { title: `${BLOG.title} | 首页`, type: 'website', ...customMeta } const targetRef = useRef(null) return (
{/* 侧边菜单 */}
{/* 下方菜单组 */}