initial commit
This commit is contained in:
21
theme.config.jsx
Normal file
21
theme.config.jsx
Normal 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'
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user