logoNotionDir

Themes

Learn how to customize the theme of your directory website.

NotionDir provides two built-in themes:

Wind

Wind

Nova

Nova

You can switch between themes by changing the theme property in your src/site-config.ts file.

Custom Themes

You can also create your own custom theme, 5 components are required to be created:

const windTheme: ThemeMap = {
  layout: WindLayout,
  indexPage: WindThemeIndexPage,
  detailPage: WindThemeDetailPage,
  groupIndexPage: WindGroupIndexPage,
  groupDetailPage: WindGroupDetailPage,
}

The code of Nova and Wind themes can be used as a reference to create your own custom theme.

On this page