codeblock copy

This commit is contained in:
Jacky Zhao 2023-06-06 21:19:00 -07:00
parent 0813f127a3
commit 1cb4dadf13
10 changed files with 98 additions and 10 deletions

View file

@ -1,4 +1,5 @@
import { QuartzConfig } from "./quartz/cfg"
import Body from "./quartz/components/Body"
import Head from "./quartz/components/Head"
import Header from "./quartz/components/Header"
import {
@ -68,7 +69,8 @@ const config: QuartzConfig = {
emitters: [
new ContentPage({
Head: Head,
Header: Header
Header: Header,
Body: Body
})
]
},