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

21
theme.config.jsx Normal file
View File

@@ -0,0 +1,21 @@
export default {
footer: <p>MIT 2023 © Nextra.</p>,
head: ({ title, meta }) => (
<>
{meta.description && (
<meta name="description" content={meta.description} />
)}
{meta.tag && <meta name="keywords" content={meta.tag} />}
{meta.author && <meta name="author" content={meta.author} />}
</>
),
readMore: 'Read More →',
postFooter: null,
darkMode: false,
navs: [
{
url: 'https://github.com/shuding/nextra',
name: 'Nextra'
}
]
}