keroosha.cybergulag.today/quartz/components/index.ts

42 lines
953 B
TypeScript
Raw Normal View History

2023-07-01 10:03:01 +03:00
import Content from "./pages/Content"
import TagContent from "./pages/TagContent"
import FolderContent from "./pages/FolderContent"
2023-09-07 07:02:21 +03:00
import NotFound from "./pages/404"
import ArticleTitle from "./ArticleTitle"
2023-06-10 09:06:02 +03:00
import Darkmode from "./Darkmode"
import Head from "./Head"
import PageTitle from "./PageTitle"
2023-08-09 07:28:09 +03:00
import ContentMeta from "./ContentMeta"
2023-06-10 09:06:02 +03:00
import Spacer from "./Spacer"
import TableOfContents from "./TableOfContents"
2023-06-13 08:41:42 +03:00
import TagList from "./TagList"
2023-07-23 03:27:41 +03:00
import Graph from "./Graph"
2023-06-20 06:37:45 +03:00
import Backlinks from "./Backlinks"
import Search from "./Search"
2023-07-01 10:03:01 +03:00
import Footer from "./Footer"
import DesktopOnly from "./DesktopOnly"
import MobileOnly from "./MobileOnly"
import RecentNotes from "./RecentNotes"
2023-06-10 09:06:02 +03:00
export {
ArticleTitle,
Content,
2023-07-01 10:03:01 +03:00
TagContent,
FolderContent,
2023-06-10 09:06:02 +03:00
Darkmode,
Head,
PageTitle,
2023-08-09 07:28:09 +03:00
ContentMeta,
2023-06-10 09:06:02 +03:00
Spacer,
2023-06-13 08:41:42 +03:00
TableOfContents,
2023-06-18 20:47:07 +03:00
TagList,
2023-06-20 06:37:45 +03:00
Graph,
Backlinks,
2023-07-01 10:03:01 +03:00
Search,
Footer,
DesktopOnly,
2023-07-23 03:27:41 +03:00
MobileOnly,
RecentNotes,
2023-09-07 07:02:21 +03:00
NotFound,
2023-07-23 03:27:41 +03:00
}