mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-22 05:55:42 -05:00
Remove Backlinks, Breadcrumbs, RecentNotes, Search, TableOfContents, Comments, and OverflowList — all replaced by community plugins. Delete associated styles (6) and scripts (3). Switch layout to use Plugin.Breadcrumbs() instead of Component.Breadcrumbs().
29 lines
794 B
TypeScript
29 lines
794 B
TypeScript
import Content from "./pages/Content"
|
|
import TagContent from "./pages/TagContent"
|
|
import FolderContent from "./pages/FolderContent"
|
|
import NotFound from "./pages/404"
|
|
import Head from "./Head"
|
|
import Spacer from "./Spacer"
|
|
import DesktopOnly from "./DesktopOnly"
|
|
import MobileOnly from "./MobileOnly"
|
|
import Flex from "./Flex"
|
|
import ConditionalRender from "./ConditionalRender"
|
|
|
|
export { componentRegistry, defineComponent } from "./registry"
|
|
export { External } from "./external"
|
|
export type { ComponentManifest, RegisteredComponent } from "./registry"
|
|
export type { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
|
|
export {
|
|
Content,
|
|
TagContent,
|
|
FolderContent,
|
|
Head,
|
|
Spacer,
|
|
DesktopOnly,
|
|
MobileOnly,
|
|
NotFound,
|
|
Flex,
|
|
ConditionalRender,
|
|
}
|