feat: make theme configuration more customizable

This commit is contained in:
Hossein Mehrabi
2023-03-17 14:30:53 +03:30
parent 46fea42c0d
commit e0f47d8ccd
@@ -1,12 +1,8 @@
import { NavbarItem, Footer } from '@docusaurus/theme-common'
import { Footer, Navbar } from '@docusaurus/theme-common'
export type ThemeConfig = {
navbar?: {
items?: NavbarItem[]
}
footer?: {
links?: Footer['links']
}
navbar?: Navbar
footer?: Footer
}
export type { PluginOptions as DefaultThemeOptions } from '@acid-info/logos-docusaurus-theme'