Update src/pages/blog/[...slug].tsx

This commit is contained in:
Lio 2024-10-09 11:27:36 +00:00
parent d25146db8f
commit 2f8136bac1

View file

@ -1,7 +1,6 @@
import RenderWithoutJS from "@/components/RenderWithoutJS"; import RenderWithoutJS from "@/components/RenderWithoutJS";
import Sidebar from "@/components/Sidebar"; import Sidebar from "@/components/Sidebar";
import index from "@/styles/Index.module.sass" import index from "@/styles/Index.module.sass"
import Lanyard from "@/components/Lanyard"
import { remark } from "remark" import { remark } from "remark"
import remarkFrontmatter from "remark-frontmatter" import remarkFrontmatter from "remark-frontmatter"
import { read } from "to-vfile" import { read } from "to-vfile"
@ -42,7 +41,6 @@ const Post = (props: { post: string, slug: string, matter: any }) => {
}} }}
/> />
</section> </section>
<Lanyard />
</main> </main>
</RenderWithoutJS> </RenderWithoutJS>
); );