initial commit

This commit is contained in:
Zheyuan Wu
2024-11-17 22:05:00 -06:00
parent 784903cc3f
commit 1a0afdc06c
37 changed files with 7607 additions and 0 deletions

11
next.config.mjs Normal file
View File

@@ -0,0 +1,11 @@
import nextra from 'nextra'
const withNextra = nextra({
theme: 'nextra-theme-blog',
themeConfig: './theme.config.jsx'
})
export default withNextra()
// If you have other Next.js configurations, you can pass them as the parameter:
// export default withNextra({ /* other next.js config */ })