@seqera/docusaurus-theme-seqera 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (327) hide show
  1. package/README.md +26 -0
  2. package/package.json +66 -0
  3. package/src/getSwizzleConfig.ts +433 -0
  4. package/src/index.ts +154 -0
  5. package/src/inlineScripts.ts +95 -0
  6. package/src/inlineSvgSprites.ts +7 -0
  7. package/src/main-styles.css +322 -0
  8. package/src/nprogress.css +36 -0
  9. package/src/nprogress.ts +27 -0
  10. package/src/options.ts +503 -0
  11. package/src/prism-include-languages.ts +6 -0
  12. package/src/styles/api.css +42 -0
  13. package/src/styles/typography.css +342 -0
  14. package/src/theme/Admonition/Icon/Danger.tsx +15 -0
  15. package/src/theme/Admonition/Icon/Info.tsx +15 -0
  16. package/src/theme/Admonition/Icon/Note.tsx +15 -0
  17. package/src/theme/Admonition/Icon/Tip.tsx +15 -0
  18. package/src/theme/Admonition/Icon/Warning.tsx +15 -0
  19. package/src/theme/Admonition/Layout/index.tsx +53 -0
  20. package/src/theme/Admonition/Layout/styles.module.css +39 -0
  21. package/src/theme/Admonition/Type/Caution.tsx +34 -0
  22. package/src/theme/Admonition/Type/Danger.tsx +32 -0
  23. package/src/theme/Admonition/Type/Info.tsx +32 -0
  24. package/src/theme/Admonition/Type/Note.tsx +32 -0
  25. package/src/theme/Admonition/Type/Tip.tsx +32 -0
  26. package/src/theme/Admonition/Type/Warning.tsx +32 -0
  27. package/src/theme/Admonition/Types.tsx +33 -0
  28. package/src/theme/Admonition/index.tsx +23 -0
  29. package/src/theme/AdmonitionVersioned/AddedInVersion.tsx +14 -0
  30. package/src/theme/AdmonitionVersioned/AdmonitionVersioned.tsx +66 -0
  31. package/src/theme/AdmonitionVersioned/ChangedInVersion.tsx +14 -0
  32. package/src/theme/AdmonitionVersioned/DeprecatedInVersion.tsx +15 -0
  33. package/src/theme/AdmonitionVersioned/getStableVersion.ts +30 -0
  34. package/src/theme/AdmonitionVersioned/index.ts +1 -0
  35. package/src/theme/AdmonitionVersioned/stableVersions.ts +119 -0
  36. package/src/theme/AnnouncementBar/CloseButton/index.tsx +24 -0
  37. package/src/theme/AnnouncementBar/CloseButton/styles.module.css +6 -0
  38. package/src/theme/AnnouncementBar/Content/index.tsx +21 -0
  39. package/src/theme/AnnouncementBar/Content/styles.module.css +12 -0
  40. package/src/theme/AnnouncementBar/index.tsx +37 -0
  41. package/src/theme/AnnouncementBar/styles.module.css +57 -0
  42. package/src/theme/BackToTopButton/index.tsx +30 -0
  43. package/src/theme/BackToTopButton/styles.module.css +39 -0
  44. package/src/theme/Blog/Components/Author/Socials/index.tsx +75 -0
  45. package/src/theme/Blog/Components/Author/Socials/styles.module.css +34 -0
  46. package/src/theme/Blog/Components/Author/index.tsx +98 -0
  47. package/src/theme/Blog/Components/Author/styles.module.css +69 -0
  48. package/src/theme/Blog/Pages/BlogAuthorsListPage/index.tsx +57 -0
  49. package/src/theme/Blog/Pages/BlogAuthorsListPage/styles.module.css +6 -0
  50. package/src/theme/Blog/Pages/BlogAuthorsPostsPage/index.tsx +77 -0
  51. package/src/theme/BlogArchivePage/index.tsx +102 -0
  52. package/src/theme/BlogLayout/index.tsx +31 -0
  53. package/src/theme/BlogListPage/StructuredData/index.tsx +17 -0
  54. package/src/theme/BlogListPage/index.tsx +57 -0
  55. package/src/theme/BlogListPaginator/index.tsx +47 -0
  56. package/src/theme/BlogPostItem/Container/index.tsx +11 -0
  57. package/src/theme/BlogPostItem/Content/index.tsx +23 -0
  58. package/src/theme/BlogPostItem/Footer/ReadMoreLink/index.tsx +39 -0
  59. package/src/theme/BlogPostItem/Footer/index.tsx +85 -0
  60. package/src/theme/BlogPostItem/Header/Authors/index.tsx +49 -0
  61. package/src/theme/BlogPostItem/Header/Authors/styles.module.css +15 -0
  62. package/src/theme/BlogPostItem/Header/Info/index.tsx +77 -0
  63. package/src/theme/BlogPostItem/Header/Info/styles.module.css +5 -0
  64. package/src/theme/BlogPostItem/Header/Title/index.tsx +20 -0
  65. package/src/theme/BlogPostItem/Header/Title/styles.module.css +14 -0
  66. package/src/theme/BlogPostItem/Header/index.tsx +16 -0
  67. package/src/theme/BlogPostItem/index.tsx +27 -0
  68. package/src/theme/BlogPostItems/index.tsx +25 -0
  69. package/src/theme/BlogPostPage/Metadata/index.tsx +39 -0
  70. package/src/theme/BlogPostPage/StructuredData/index.tsx +16 -0
  71. package/src/theme/BlogPostPage/index.tsx +74 -0
  72. package/src/theme/BlogPostPaginator/index.tsx +46 -0
  73. package/src/theme/BlogSidebar/Content/index.tsx +52 -0
  74. package/src/theme/BlogSidebar/Desktop/index.tsx +52 -0
  75. package/src/theme/BlogSidebar/Desktop/styles.module.css +46 -0
  76. package/src/theme/BlogSidebar/Mobile/index.tsx +47 -0
  77. package/src/theme/BlogSidebar/Mobile/styles.module.css +5 -0
  78. package/src/theme/BlogSidebar/index.tsx +19 -0
  79. package/src/theme/BlogTagsListPage/index.tsx +33 -0
  80. package/src/theme/BlogTagsPostsPage/index.tsx +68 -0
  81. package/src/theme/CodeBlock/Buttons/Button/index.tsx +14 -0
  82. package/src/theme/CodeBlock/Buttons/CopyButton/index.tsx +82 -0
  83. package/src/theme/CodeBlock/Buttons/CopyButton/styles.module.css +42 -0
  84. package/src/theme/CodeBlock/Buttons/WordWrapButton/index.tsx +40 -0
  85. package/src/theme/CodeBlock/Buttons/WordWrapButton/styles.module.css +10 -0
  86. package/src/theme/CodeBlock/Buttons/index.tsx +27 -0
  87. package/src/theme/CodeBlock/Buttons/styles.module.css +32 -0
  88. package/src/theme/CodeBlock/Container/index.tsx +27 -0
  89. package/src/theme/CodeBlock/Container/styles.module.css +9 -0
  90. package/src/theme/CodeBlock/Content/Element.tsx +24 -0
  91. package/src/theme/CodeBlock/Content/String.tsx +37 -0
  92. package/src/theme/CodeBlock/Content/index.tsx +79 -0
  93. package/src/theme/CodeBlock/Content/styles.module.css +30 -0
  94. package/src/theme/CodeBlock/Layout/index.tsx +29 -0
  95. package/src/theme/CodeBlock/Layout/styles.module.css +22 -0
  96. package/src/theme/CodeBlock/Line/Token/index.tsx +13 -0
  97. package/src/theme/CodeBlock/Line/index.tsx +61 -0
  98. package/src/theme/CodeBlock/Line/styles.module.css +47 -0
  99. package/src/theme/CodeBlock/Title/index.tsx +10 -0
  100. package/src/theme/CodeBlock/index.tsx +40 -0
  101. package/src/theme/CodeInline/index.tsx +11 -0
  102. package/src/theme/ColorModeToggle/index.tsx +140 -0
  103. package/src/theme/ColorModeToggle/styles.module.css +35 -0
  104. package/src/theme/ContentVisibility/Draft/index.tsx +22 -0
  105. package/src/theme/ContentVisibility/Unlisted/index.tsx +37 -0
  106. package/src/theme/ContentVisibility/index.tsx +20 -0
  107. package/src/theme/Details/index.tsx +21 -0
  108. package/src/theme/Details/styles.module.css +8 -0
  109. package/src/theme/DocBreadcrumbs/Items/Home/index.tsx +29 -0
  110. package/src/theme/DocBreadcrumbs/Items/Home/styles.module.css +9 -0
  111. package/src/theme/DocBreadcrumbs/StructuredData/index.tsx +19 -0
  112. package/src/theme/DocBreadcrumbs/index.tsx +98 -0
  113. package/src/theme/DocBreadcrumbs/styles.module.css +14 -0
  114. package/src/theme/DocCard/index.tsx +133 -0
  115. package/src/theme/DocCard/styles.module.css +29 -0
  116. package/src/theme/DocCardList/index.tsx +43 -0
  117. package/src/theme/DocCardList/styles.module.css +9 -0
  118. package/src/theme/DocCategoryGeneratedIndexPage/index.tsx +68 -0
  119. package/src/theme/DocCategoryGeneratedIndexPage/styles.module.css +13 -0
  120. package/src/theme/DocItem/Content/index.tsx +43 -0
  121. package/src/theme/DocItem/Footer/index.tsx +51 -0
  122. package/src/theme/DocItem/Layout/index.tsx +66 -0
  123. package/src/theme/DocItem/Layout/styles.module.css +12 -0
  124. package/src/theme/DocItem/Metadata/index.tsx +17 -0
  125. package/src/theme/DocItem/Paginator/index.tsx +20 -0
  126. package/src/theme/DocItem/TOC/Desktop/index.tsx +19 -0
  127. package/src/theme/DocItem/TOC/Mobile/index.tsx +22 -0
  128. package/src/theme/DocItem/TOC/Mobile/styles.module.css +26 -0
  129. package/src/theme/DocItem/index.tsx +23 -0
  130. package/src/theme/DocPaginator/index.tsx +46 -0
  131. package/src/theme/DocRoot/Layout/Main/index.tsx +31 -0
  132. package/src/theme/DocRoot/Layout/Main/styles.module.css +23 -0
  133. package/src/theme/DocRoot/Layout/Sidebar/ExpandButton/index.tsx +36 -0
  134. package/src/theme/DocRoot/Layout/Sidebar/ExpandButton/styles.module.css +29 -0
  135. package/src/theme/DocRoot/Layout/Sidebar/index.tsx +79 -0
  136. package/src/theme/DocRoot/Layout/Sidebar/styles.module.css +34 -0
  137. package/src/theme/DocRoot/Layout/index.tsx +32 -0
  138. package/src/theme/DocRoot/Layout/styles.module.css +11 -0
  139. package/src/theme/DocRoot/index.tsx +29 -0
  140. package/src/theme/DocSidebar/Desktop/CollapseButton/index.tsx +34 -0
  141. package/src/theme/DocSidebar/Desktop/CollapseButton/styles.module.css +42 -0
  142. package/src/theme/DocSidebar/Desktop/Content/index.tsx +56 -0
  143. package/src/theme/DocSidebar/Desktop/Content/styles.module.css +18 -0
  144. package/src/theme/DocSidebar/Desktop/index.tsx +36 -0
  145. package/src/theme/DocSidebar/Desktop/styles.module.css +39 -0
  146. package/src/theme/DocSidebar/Mobile/index.tsx +49 -0
  147. package/src/theme/DocSidebar/index.tsx +25 -0
  148. package/src/theme/DocSidebarItem/Category/index.tsx +309 -0
  149. package/src/theme/DocSidebarItem/Category/styles.module.css +35 -0
  150. package/src/theme/DocSidebarItem/Html/index.tsx +30 -0
  151. package/src/theme/DocSidebarItem/Html/styles.module.css +8 -0
  152. package/src/theme/DocSidebarItem/Link/index.tsx +62 -0
  153. package/src/theme/DocSidebarItem/Link/styles.module.css +13 -0
  154. package/src/theme/DocSidebarItem/index.tsx +19 -0
  155. package/src/theme/DocSidebarItems/index.tsx +24 -0
  156. package/src/theme/DocTagDocListPage/index.tsx +113 -0
  157. package/src/theme/DocTagsListPage/index.tsx +52 -0
  158. package/src/theme/DocVersionBadge/index.tsx +29 -0
  159. package/src/theme/DocVersionBanner/index.tsx +171 -0
  160. package/src/theme/DocVersionRoot/index.tsx +46 -0
  161. package/src/theme/DocsRoot/index.tsx +17 -0
  162. package/src/theme/EditMetaRow/index.tsx +31 -0
  163. package/src/theme/EditMetaRow/styles.module.css +19 -0
  164. package/src/theme/EditThisPage/index.tsx +21 -0
  165. package/src/theme/ErrorPageContent.tsx +38 -0
  166. package/src/theme/Footer/Copyright/index.tsx +15 -0
  167. package/src/theme/Footer/Layout/index.tsx +42 -0
  168. package/src/theme/Footer/LinkItem/index.tsx +31 -0
  169. package/src/theme/Footer/Links/MultiColumn/index.tsx +53 -0
  170. package/src/theme/Footer/Links/Simple/index.tsx +38 -0
  171. package/src/theme/Footer/Links/index.tsx +16 -0
  172. package/src/theme/Footer/Logo/index.tsx +41 -0
  173. package/src/theme/Footer/Logo/styles.module.css +11 -0
  174. package/src/theme/Footer/index.tsx +28 -0
  175. package/src/theme/Heading/index.tsx +50 -0
  176. package/src/theme/Heading/styles.module.css +17 -0
  177. package/src/theme/Homepage/index.tsx +178 -0
  178. package/src/theme/Icon/AI/index.tsx +21 -0
  179. package/src/theme/Icon/AWS/index.tsx +22 -0
  180. package/src/theme/Icon/Arrow/index.tsx +15 -0
  181. package/src/theme/Icon/Azure/index.tsx +28 -0
  182. package/src/theme/Icon/Changelog/index.tsx +26 -0
  183. package/src/theme/Icon/ChatBubble/index.tsx +29 -0
  184. package/src/theme/Icon/ChatBubbles/index.tsx +42 -0
  185. package/src/theme/Icon/Close/index.tsx +21 -0
  186. package/src/theme/Icon/Cog/index.tsx +45 -0
  187. package/src/theme/Icon/Copy/index.tsx +15 -0
  188. package/src/theme/Icon/DarkMode/index.tsx +15 -0
  189. package/src/theme/Icon/Edit/index.tsx +24 -0
  190. package/src/theme/Icon/Edit/styles.module.css +6 -0
  191. package/src/theme/Icon/Envelope/index.tsx +33 -0
  192. package/src/theme/Icon/ExternalLink/index.tsx +30 -0
  193. package/src/theme/Icon/ExternalLink/styles.module.css +5 -0
  194. package/src/theme/Icon/Fusion/index.tsx +32 -0
  195. package/src/theme/Icon/GoogleCloud/index.tsx +56 -0
  196. package/src/theme/Icon/Home/index.tsx +15 -0
  197. package/src/theme/Icon/Language/index.tsx +24 -0
  198. package/src/theme/Icon/LightMode/index.tsx +15 -0
  199. package/src/theme/Icon/MCP/index.tsx +84 -0
  200. package/src/theme/Icon/Menu/index.tsx +29 -0
  201. package/src/theme/Icon/MultiQC/index.tsx +25 -0
  202. package/src/theme/Icon/Nextflow/index.tsx +25 -0
  203. package/src/theme/Icon/QuestionMark/index.tsx +46 -0
  204. package/src/theme/Icon/SeqeraCloud/index.tsx +35 -0
  205. package/src/theme/Icon/SeqeraEnterprise/index.tsx +372 -0
  206. package/src/theme/Icon/SeqeraLogo/index.tsx +22 -0
  207. package/src/theme/Icon/ServiceStatus/index.tsx +101 -0
  208. package/src/theme/Icon/Sidebar/index.tsx +8 -0
  209. package/src/theme/Icon/Socials/Bluesky/index.tsx +23 -0
  210. package/src/theme/Icon/Socials/Bluesky/styles.module.css +9 -0
  211. package/src/theme/Icon/Socials/Default/index.tsx +28 -0
  212. package/src/theme/Icon/Socials/Email/index.tsx +23 -0
  213. package/src/theme/Icon/Socials/GitHub/index.tsx +24 -0
  214. package/src/theme/Icon/Socials/GitHub/styles.module.css +9 -0
  215. package/src/theme/Icon/Socials/Instagram/index.tsx +23 -0
  216. package/src/theme/Icon/Socials/Instagram/styles.module.css +9 -0
  217. package/src/theme/Icon/Socials/LinkedIn/index.tsx +23 -0
  218. package/src/theme/Icon/Socials/LinkedIn/styles.module.css +9 -0
  219. package/src/theme/Icon/Socials/Mastodon/index.tsx +40 -0
  220. package/src/theme/Icon/Socials/StackOverflow/index.tsx +25 -0
  221. package/src/theme/Icon/Socials/Threads/index.tsx +25 -0
  222. package/src/theme/Icon/Socials/Threads/styles.module.css +9 -0
  223. package/src/theme/Icon/Socials/Twitch/index.tsx +32 -0
  224. package/src/theme/Icon/Socials/Twitter/index.tsx +22 -0
  225. package/src/theme/Icon/Socials/X/index.tsx +24 -0
  226. package/src/theme/Icon/Socials/X/styles.module.css +9 -0
  227. package/src/theme/Icon/Socials/YouTube/index.tsx +22 -0
  228. package/src/theme/Icon/Success/index.tsx +15 -0
  229. package/src/theme/Icon/SystemColorMode/index.tsx +15 -0
  230. package/src/theme/Icon/Wave/index.tsx +32 -0
  231. package/src/theme/Icon/WordWrap/index.tsx +15 -0
  232. package/src/theme/LastUpdated/index.tsx +91 -0
  233. package/src/theme/Layout/Provider/index.tsx +26 -0
  234. package/src/theme/Layout/index.tsx +59 -0
  235. package/src/theme/Layout/styles.module.css +23 -0
  236. package/src/theme/Logo/index.tsx +78 -0
  237. package/src/theme/MDXComponents/A/index.tsx +16 -0
  238. package/src/theme/MDXComponents/Button/index.tsx +43 -0
  239. package/src/theme/MDXComponents/Code.tsx +26 -0
  240. package/src/theme/MDXComponents/Details.tsx +26 -0
  241. package/src/theme/MDXComponents/Heading.tsx +9 -0
  242. package/src/theme/MDXComponents/Img/index.tsx +23 -0
  243. package/src/theme/MDXComponents/Img/styles.module.css +5 -0
  244. package/src/theme/MDXComponents/Li.tsx +17 -0
  245. package/src/theme/MDXComponents/Pre.tsx +10 -0
  246. package/src/theme/MDXComponents/Ul/index.tsx +25 -0
  247. package/src/theme/MDXComponents/Ul/styles.module.css +9 -0
  248. package/src/theme/MDXComponents/index.tsx +47 -0
  249. package/src/theme/MDXContent/index.tsx +10 -0
  250. package/src/theme/MDXPage/index.tsx +87 -0
  251. package/src/theme/MDXPage/styles.module.css +5 -0
  252. package/src/theme/Mermaid.tsx +11 -0
  253. package/src/theme/Navbar/ColorModeToggle/index.tsx +29 -0
  254. package/src/theme/Navbar/ColorModeToggle/styles.module.css +5 -0
  255. package/src/theme/Navbar/Content/index.tsx +152 -0
  256. package/src/theme/Navbar/Content/styles.module.css +19 -0
  257. package/src/theme/Navbar/Layout/index.tsx +59 -0
  258. package/src/theme/Navbar/Layout/styles.module.css +9 -0
  259. package/src/theme/Navbar/Logo/index.tsx +14 -0
  260. package/src/theme/Navbar/MobileSidebar/Header/index.tsx +37 -0
  261. package/src/theme/Navbar/MobileSidebar/Layout/index.tsx +72 -0
  262. package/src/theme/Navbar/MobileSidebar/Layout/styles.module.css +11 -0
  263. package/src/theme/Navbar/MobileSidebar/PrimaryMenu/index.tsx +90 -0
  264. package/src/theme/Navbar/MobileSidebar/SecondaryMenu/index.tsx +34 -0
  265. package/src/theme/Navbar/MobileSidebar/Toggle/index.tsx +25 -0
  266. package/src/theme/Navbar/MobileSidebar/index.tsx +28 -0
  267. package/src/theme/Navbar/Search/index.tsx +15 -0
  268. package/src/theme/Navbar/Search/styles.module.css +22 -0
  269. package/src/theme/Navbar/Submenu/SubmenuLinks.tsx +136 -0
  270. package/src/theme/Navbar/Submenu/index.tsx +84 -0
  271. package/src/theme/Navbar/Submenu/styles.module.css +82 -0
  272. package/src/theme/Navbar/index.tsx +13 -0
  273. package/src/theme/NavbarItem/ComponentTypes.tsx +27 -0
  274. package/src/theme/NavbarItem/DefaultNavbarItem/Desktop/index.tsx +29 -0
  275. package/src/theme/NavbarItem/DefaultNavbarItem/Mobile/index.tsx +18 -0
  276. package/src/theme/NavbarItem/DefaultNavbarItem/index.tsx +23 -0
  277. package/src/theme/NavbarItem/DocNavbarItem.tsx +38 -0
  278. package/src/theme/NavbarItem/DocSidebarNavbarItem.tsx +33 -0
  279. package/src/theme/NavbarItem/DocsVersionDropdownNavbarItem.tsx +189 -0
  280. package/src/theme/NavbarItem/DocsVersionNavbarItem.tsx +22 -0
  281. package/src/theme/NavbarItem/DropdownNavbarItem/Desktop/index.tsx +81 -0
  282. package/src/theme/NavbarItem/DropdownNavbarItem/Mobile/index.tsx +161 -0
  283. package/src/theme/NavbarItem/DropdownNavbarItem/Mobile/styles.module.css +5 -0
  284. package/src/theme/NavbarItem/DropdownNavbarItem/index.tsx +14 -0
  285. package/src/theme/NavbarItem/HtmlNavbarItem.tsx +27 -0
  286. package/src/theme/NavbarItem/LocaleDropdownNavbarItem/index.tsx +128 -0
  287. package/src/theme/NavbarItem/LocaleDropdownNavbarItem/styles.module.css +6 -0
  288. package/src/theme/NavbarItem/NavbarNavLink.tsx +69 -0
  289. package/src/theme/NavbarItem/SearchNavbarItem.tsx +21 -0
  290. package/src/theme/NavbarItem/index.tsx +23 -0
  291. package/src/theme/NotFound/Content/index.tsx +34 -0
  292. package/src/theme/NotFound/index.tsx +22 -0
  293. package/src/theme/PaginatorNavLink/index.tsx +21 -0
  294. package/src/theme/SearchBar.tsx +8 -0
  295. package/src/theme/SearchMetadata/index.tsx +38 -0
  296. package/src/theme/SiteMetadata/index.tsx +153 -0
  297. package/src/theme/SkipToContent/index.tsx +9 -0
  298. package/src/theme/SkipToContent/styles.module.css +16 -0
  299. package/src/theme/TOC/index.tsx +26 -0
  300. package/src/theme/TOC/styles.module.css +23 -0
  301. package/src/theme/TOCCollapsible/CollapseButton/index.tsx +30 -0
  302. package/src/theme/TOCCollapsible/CollapseButton/styles.module.css +27 -0
  303. package/src/theme/TOCCollapsible/index.tsx +42 -0
  304. package/src/theme/TOCCollapsible/styles.module.css +26 -0
  305. package/src/theme/TOCInline/index.tsx +25 -0
  306. package/src/theme/TOCInline/styles.module.css +7 -0
  307. package/src/theme/TOCItems/Tree.tsx +40 -0
  308. package/src/theme/TOCItems/index.tsx +56 -0
  309. package/src/theme/TabItem/index.tsx +22 -0
  310. package/src/theme/TabItem/styles.module.css +5 -0
  311. package/src/theme/Tabs/index.tsx +167 -0
  312. package/src/theme/Tabs/styles.module.css +9 -0
  313. package/src/theme/Tag/index.tsx +30 -0
  314. package/src/theme/Tag/styles.module.css +65 -0
  315. package/src/theme/TagsListByLetter/index.tsx +40 -0
  316. package/src/theme/TagsListByLetter/styles.module.css +6 -0
  317. package/src/theme/TagsListInline/index.tsx +30 -0
  318. package/src/theme/TagsListInline/styles.module.css +10 -0
  319. package/src/theme/ThemeProvider/TitleFormatter/index.tsx +22 -0
  320. package/src/theme/ThemeProvider/index.tsx +9 -0
  321. package/src/theme/ThemedImage/index.tsx +21 -0
  322. package/src/theme/ThemedImage/styles.module.css +13 -0
  323. package/src/theme/pages/Home/index.tsx +19 -0
  324. package/src/theme/prism-include-languages.ts +39 -0
  325. package/src/theme-seqera.d.ts +2277 -0
  326. package/src/translations.ts +240 -0
  327. package/tailwind.config.js +7 -0
@@ -0,0 +1,372 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/SeqeraEnterprise';
3
+
4
+ export default function IconSeqeraEnterprise({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
11
+ <g clipPath="url(#clip0_5816_73040)">
12
+ <mask
13
+ id="mask0_5816_73040"
14
+ maskUnits="userSpaceOnUse"
15
+ x="0"
16
+ y="0"
17
+ width="24"
18
+ height="24">
19
+ <path d="M24 0H0V24H24V0Z" fill="white" />
20
+ </mask>
21
+ <g mask="url(#mask0_5816_73040)">
22
+ <path
23
+ d="M0.5 23.5V9.5L10.5 8.5V23.5"
24
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
25
+ style={{
26
+ '--icon-stroke': lightFill,
27
+ '--icon-stroke-dark': darkFill,
28
+ } as React.CSSProperties}
29
+ strokeMiterlimit="10"
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ <path
34
+ d="M23.5 23.5V16L18.5 15V23.5"
35
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
36
+ style={{
37
+ '--icon-stroke': lightFill,
38
+ '--icon-stroke-dark': darkFill,
39
+ } as React.CSSProperties}
40
+ strokeMiterlimit="10"
41
+ strokeLinecap="round"
42
+ strokeLinejoin="round"
43
+ />
44
+ <path
45
+ d="M8.5 8.7V1.5L18.5 0.5V23.5"
46
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
47
+ style={{
48
+ '--icon-stroke': lightFill,
49
+ '--icon-stroke-dark': darkFill,
50
+ } as React.CSSProperties}
51
+ strokeMiterlimit="10"
52
+ strokeLinecap="round"
53
+ strokeLinejoin="round"
54
+ />
55
+ <path
56
+ d="M8.5 4L18.5 3"
57
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
58
+ style={{
59
+ '--icon-stroke': lightFill,
60
+ '--icon-stroke-dark': darkFill,
61
+ } as React.CSSProperties}
62
+ strokeMiterlimit="10"
63
+ strokeLinecap="round"
64
+ strokeLinejoin="round"
65
+ />
66
+ <path
67
+ d="M16.5 20.5H13.5V23.5H16.5V20.5Z"
68
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
69
+ style={{
70
+ '--icon-stroke': lightFill,
71
+ '--icon-stroke-dark': darkFill,
72
+ } as React.CSSProperties}
73
+ strokeMiterlimit="10"
74
+ strokeLinecap="round"
75
+ strokeLinejoin="round"
76
+ />
77
+ <path
78
+ d="M6.5 20.5H3.5V23.5H6.5V20.5Z"
79
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
80
+ style={{
81
+ '--icon-stroke': lightFill,
82
+ '--icon-stroke-dark': darkFill,
83
+ } as React.CSSProperties}
84
+ strokeMiterlimit="10"
85
+ strokeLinecap="round"
86
+ strokeLinejoin="round"
87
+ />
88
+ <path
89
+ d="M3.5 11.5H4.5"
90
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
91
+ style={{
92
+ '--icon-stroke': lightFill,
93
+ '--icon-stroke-dark': darkFill,
94
+ } as React.CSSProperties}
95
+ strokeMiterlimit="10"
96
+ strokeLinecap="round"
97
+ strokeLinejoin="round"
98
+ />
99
+ <path
100
+ d="M6.5 11.5H7.5"
101
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
102
+ style={{
103
+ '--icon-stroke': lightFill,
104
+ '--icon-stroke-dark': darkFill,
105
+ } as React.CSSProperties}
106
+ strokeMiterlimit="10"
107
+ strokeLinecap="round"
108
+ strokeLinejoin="round"
109
+ />
110
+ <path
111
+ d="M3.5 13.5H4.5"
112
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
113
+ style={{
114
+ '--icon-stroke': lightFill,
115
+ '--icon-stroke-dark': darkFill,
116
+ } as React.CSSProperties}
117
+ strokeMiterlimit="10"
118
+ strokeLinecap="round"
119
+ strokeLinejoin="round"
120
+ />
121
+ <path
122
+ d="M6.5 13.5H7.5"
123
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
124
+ style={{
125
+ '--icon-stroke': lightFill,
126
+ '--icon-stroke-dark': darkFill,
127
+ } as React.CSSProperties}
128
+ strokeMiterlimit="10"
129
+ strokeLinecap="round"
130
+ strokeLinejoin="round"
131
+ />
132
+ <path
133
+ d="M3.5 15.5H4.5"
134
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
135
+ style={{
136
+ '--icon-stroke': lightFill,
137
+ '--icon-stroke-dark': darkFill,
138
+ } as React.CSSProperties}
139
+ strokeMiterlimit="10"
140
+ strokeLinecap="round"
141
+ strokeLinejoin="round"
142
+ />
143
+ <path
144
+ d="M6.5 15.5H7.5"
145
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
146
+ style={{
147
+ '--icon-stroke': lightFill,
148
+ '--icon-stroke-dark': darkFill,
149
+ } as React.CSSProperties}
150
+ strokeMiterlimit="10"
151
+ strokeLinecap="round"
152
+ strokeLinejoin="round"
153
+ />
154
+ <path
155
+ d="M3.5 17.5H4.5"
156
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
157
+ style={{
158
+ '--icon-stroke': lightFill,
159
+ '--icon-stroke-dark': darkFill,
160
+ } as React.CSSProperties}
161
+ strokeMiterlimit="10"
162
+ strokeLinecap="round"
163
+ strokeLinejoin="round"
164
+ />
165
+ <path
166
+ d="M6.5 17.5H7.5"
167
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
168
+ style={{
169
+ '--icon-stroke': lightFill,
170
+ '--icon-stroke-dark': darkFill,
171
+ } as React.CSSProperties}
172
+ strokeMiterlimit="10"
173
+ strokeLinecap="round"
174
+ strokeLinejoin="round"
175
+ />
176
+ <path
177
+ d="M15.5 5.5H16.5"
178
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
179
+ style={{
180
+ '--icon-stroke': lightFill,
181
+ '--icon-stroke-dark': darkFill,
182
+ } as React.CSSProperties}
183
+ strokeMiterlimit="10"
184
+ strokeLinecap="round"
185
+ strokeLinejoin="round"
186
+ />
187
+ <path
188
+ d="M15.5 7.5H16.5"
189
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
190
+ style={{
191
+ '--icon-stroke': lightFill,
192
+ '--icon-stroke-dark': darkFill,
193
+ } as React.CSSProperties}
194
+ strokeMiterlimit="10"
195
+ strokeLinecap="round"
196
+ strokeLinejoin="round"
197
+ />
198
+ <path
199
+ d="M15.5 9.5H16.5"
200
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
201
+ style={{
202
+ '--icon-stroke': lightFill,
203
+ '--icon-stroke-dark': darkFill,
204
+ } as React.CSSProperties}
205
+ strokeMiterlimit="10"
206
+ strokeLinecap="round"
207
+ strokeLinejoin="round"
208
+ />
209
+ <path
210
+ d="M15.5 11.5H16.5"
211
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
212
+ style={{
213
+ '--icon-stroke': lightFill,
214
+ '--icon-stroke-dark': darkFill,
215
+ } as React.CSSProperties}
216
+ strokeMiterlimit="10"
217
+ strokeLinecap="round"
218
+ strokeLinejoin="round"
219
+ />
220
+ <path
221
+ d="M15.5 13.5H16.5"
222
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
223
+ style={{
224
+ '--icon-stroke': lightFill,
225
+ '--icon-stroke-dark': darkFill,
226
+ } as React.CSSProperties}
227
+ strokeMiterlimit="10"
228
+ strokeLinecap="round"
229
+ strokeLinejoin="round"
230
+ />
231
+ <path
232
+ d="M15.5 15.5H16.5"
233
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
234
+ style={{
235
+ '--icon-stroke': lightFill,
236
+ '--icon-stroke-dark': darkFill,
237
+ } as React.CSSProperties}
238
+ strokeMiterlimit="10"
239
+ strokeLinecap="round"
240
+ strokeLinejoin="round"
241
+ />
242
+ <path
243
+ d="M15.5 17.5H16.5"
244
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
245
+ style={{
246
+ '--icon-stroke': lightFill,
247
+ '--icon-stroke-dark': darkFill,
248
+ } as React.CSSProperties}
249
+ strokeMiterlimit="10"
250
+ strokeLinecap="round"
251
+ strokeLinejoin="round"
252
+ />
253
+ <path
254
+ d="M12.5 5.5H13.5"
255
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
256
+ style={{
257
+ '--icon-stroke': lightFill,
258
+ '--icon-stroke-dark': darkFill,
259
+ } as React.CSSProperties}
260
+ strokeMiterlimit="10"
261
+ strokeLinecap="round"
262
+ strokeLinejoin="round"
263
+ />
264
+ <path
265
+ d="M12.5 7.5H13.5"
266
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
267
+ style={{
268
+ '--icon-stroke': lightFill,
269
+ '--icon-stroke-dark': darkFill,
270
+ } as React.CSSProperties}
271
+ strokeMiterlimit="10"
272
+ strokeLinecap="round"
273
+ strokeLinejoin="round"
274
+ />
275
+ <path
276
+ d="M12.5 9.5H13.5"
277
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
278
+ style={{
279
+ '--icon-stroke': lightFill,
280
+ '--icon-stroke-dark': darkFill,
281
+ } as React.CSSProperties}
282
+ strokeMiterlimit="10"
283
+ strokeLinecap="round"
284
+ strokeLinejoin="round"
285
+ />
286
+ <path
287
+ d="M12.5 11.5H13.5"
288
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
289
+ style={{
290
+ '--icon-stroke': lightFill,
291
+ '--icon-stroke-dark': darkFill,
292
+ } as React.CSSProperties}
293
+ strokeMiterlimit="10"
294
+ strokeLinecap="round"
295
+ strokeLinejoin="round"
296
+ />
297
+ <path
298
+ d="M12.5 13.5H13.5"
299
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
300
+ style={{
301
+ '--icon-stroke': lightFill,
302
+ '--icon-stroke-dark': darkFill,
303
+ } as React.CSSProperties}
304
+ strokeMiterlimit="10"
305
+ strokeLinecap="round"
306
+ strokeLinejoin="round"
307
+ />
308
+ <path
309
+ d="M12.5 15.5H13.5"
310
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
311
+ style={{
312
+ '--icon-stroke': lightFill,
313
+ '--icon-stroke-dark': darkFill,
314
+ } as React.CSSProperties}
315
+ strokeMiterlimit="10"
316
+ strokeLinecap="round"
317
+ strokeLinejoin="round"
318
+ />
319
+ <path
320
+ d="M12.5 17.5H13.5"
321
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
322
+ style={{
323
+ '--icon-stroke': lightFill,
324
+ '--icon-stroke-dark': darkFill,
325
+ } as React.CSSProperties}
326
+ strokeMiterlimit="10"
327
+ strokeLinecap="round"
328
+ strokeLinejoin="round"
329
+ />
330
+ <path
331
+ d="M20.5 18.5H21.5"
332
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
333
+ style={{
334
+ '--icon-stroke': lightFill,
335
+ '--icon-stroke-dark': darkFill,
336
+ } as React.CSSProperties}
337
+ strokeMiterlimit="10"
338
+ strokeLinecap="round"
339
+ strokeLinejoin="round"
340
+ />
341
+ <path
342
+ d="M20.5 20.5H21.5"
343
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
344
+ style={{
345
+ '--icon-stroke': lightFill,
346
+ '--icon-stroke-dark': darkFill,
347
+ } as React.CSSProperties}
348
+ strokeMiterlimit="10"
349
+ strokeLinecap="round"
350
+ strokeLinejoin="round"
351
+ />
352
+ <path
353
+ d="M0.5 23.5H23.5"
354
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
355
+ style={{
356
+ '--icon-stroke': lightFill,
357
+ '--icon-stroke-dark': darkFill,
358
+ } as React.CSSProperties}
359
+ strokeMiterlimit="10"
360
+ strokeLinecap="round"
361
+ strokeLinejoin="round"
362
+ />
363
+ </g>
364
+ </g>
365
+ <defs>
366
+ <clipPath id="clip0_5816_73040">
367
+ <rect width="24" height="24" fill="white" />
368
+ </clipPath>
369
+ </defs>
370
+ </svg>
371
+ );
372
+ }
@@ -0,0 +1,22 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/SeqeraLogo';
3
+
4
+ export default function IconSeqeraLogo({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg width="15" height="14" fill="none" viewBox="0 0 15 14" {...props}>
11
+ <path
12
+ className="fill-[var(--icon-stroke)] dark:fill-[var(--icon-stroke-dark)]"
13
+ style={
14
+ {
15
+ '--icon-stroke': lightFill,
16
+ '--icon-stroke-dark': darkFill,
17
+ } as React.CSSProperties
18
+ }
19
+ d="m14.513 7.581-.003-.048-.003-.048-.005-.048-.006-.047-.006-.047-.008-.048-.01-.047-.009-.047-.01-.046-.013-.047-.013-.046-.014-.046-.015-.046-.016-.046-.018-.044-.018-.045-.019-.044-.02-.044-.02-.044-.022-.043-.023-.042-.024-.042-.025-.042-.025-.041-.027-.04-.027-.04-.028-.04-.03-.039-.01-.012h-.432l.007.028.01.038.007.037.007.038.006.038.004.038.004.038.003.038.001.038v.11499999999999999l-.004.038-.004.038-.004.038-.006.038-.007.037-.008.039-.009.036-.01.037-.01.037-.012.037-.013.036-.014.036-.015.035-.016.036-.017.034-.017.034-.02.034-.02.033-.02.033-.022.032-.022.031-.023.031-.024.031-.025.03-.026.029-.026.028-.027.028-.029.027-.028.026-.03.026-.03.025-.03.023-.032.024-.033.023-.032.021-.034.02-.034.02-.034.02-.035.017-.035.018L12.79 8l-.037.015-.036.015-.038.013-.037.013-.037.011-.039.01-.039.01-.038.009-.039.008-.039.006-.04.005-.038.005-.04.004-.04.002-.039.002H0v1.807h12.224l.05-.002.05-.003.049-.004.05-.004.049-.005.049-.007.049-.008.048-.008.05-.01.048-.01.048-.012.048-.013.048-.013.047-.014.047-.017.047-.016.046-.017.046-.018.045-.02.046-.02.044-.021.044-.022.044-.023.043-.023.043-.026.041-.025.042-.026.041-.028.04-.028.04-.029.039-.03.039-.03.037-.032.037-.03.036-.034.035-.034.035-.034.034-.035.034-.035.032-.037.032-.037.03-.037.03-.039.03-.038.027-.04.028-.04.027-.04.025-.042.025-.041.024-.042.023-.043.022-.043.02-.043.02-.044.02-.044.017-.045.018-.045.016-.045.015-.046.014-.046.013-.046.012-.047.011-.047.01-.046.009-.047.008-.048.006-.047.006-.048.005-.048.003-.048.003-.047.002-.048V7.63zM.002 6.418l.003.048.004.047.004.048.006.048.007.047.008.047.008.048.01.047.011.046.013.047.012.046.015.046.015.046.016.045.017.045.018.045.02.044.019.044.02.044.022.042.024.043.023.042.025.042.026.04.026.041.027.04.029.04.029.039.01.012H.9l-.007-.03-.009-.036-.008-.038-.007-.037-.006-.038L.86 7.46l-.004-.038-.003-.038v-.039L.85 7.307l.001-.038.001-.038.003-.039.004-.037.004-.039.006-.037.007-.038.008-.038.009-.037.01-.037.01-.037.012-.036.014-.036.014-.036.015-.035.015-.036.017-.034.018-.034.019-.034.02-.033.02-.033.021-.032.023-.032.023-.03.025-.031.024-.03.026-.03.026-.027.028-.028.028-.027.029-.027.03-.025.03-.025.03-.024.032-.023.032-.023.033-.021.033-.021.034-.02.034-.019.035-.018.036-.017.036-.016.036-.016.036-.014.038-.013.037-.013.038-.011.038-.011.039-.01.038-.009.039-.007.04-.007.039-.005.039-.005.04-.003.039-.003.04-.001.04-.001h12.173V4.064H2.291l-.049.002-.05.003-.05.003-.05.004-.048.006-.05.007-.048.007-.049.009-.05.01-.048.01-.048.012-.047.012-.049.014-.047.014-.047.016-.046.016-.047.018-.046.018-.045.02-.045.02-.045.021-.044.021-.044.024-.043.023-.043.025-.041.026-.042.026-.04.028-.04.028-.041.028-.038.03-.04.03-.037.032-.037.032-.036.033-.035.033-.035.035-.034.035-.033.035-.033.037-.031.037-.03.037-.031.038-.03.04-.028.039-.027.04-.026.04-.026.042-.025.041-.023.041-.024.043-.021.044-.021.043-.02.044-.019.044-.018.045-.017.044-.016.046-.015.046-.015.046-.012.046-.013.046-.01.047-.01.047-.01.047-.007.048-.007.047-.006.048-.004.047-.004.048-.003.048L0 6.274v.096zM14.513 11.646l-.002-.048-.004-.047-.005-.048-.005-.048-.007-.047-.008-.048-.009-.047-.01-.047-.01-.047-.013-.046-.013-.046-.014-.047-.015-.044-.016-.046-.018-.045-.017-.044-.02-.045-.02-.044-.02-.043-.022-.044-.023-.042-.023-.042-.025-.042-.027-.041-.026-.04-.027-.04-.028-.04-.03-.039-.03-.038-.03-.037-.032-.038-.032-.035-.033-.036-.035-.035-.034-.035-.036-.033-.036-.033-.037-.032-.037-.031-.039-.03-.002-.003-.055.032-.048.027-.05.026-.006.003.013.023.018.035.016.034.016.035.015.036.014.035.013.036.012.037.01.037.011.037.009.037.007.037.007.038.006.038.005.038.004.038.002.038.002.039v.076l-.002.038-.002.038-.004.038-.005.039-.006.037-.007.038-.007.038-.009.037-.01.037-.01.037-.013.036-.013.037-.014.035-.015.036-.016.035-.016.034-.018.034-.02.034-.02.033-.02.033-.021.032-.023.032-.022.03-.025.031-.025.03-.025.03-.027.028-.027.027-.028.027-.03.026-.028.026-.03.025-.031.024-.032.023-.032.023-.033.02-.033.022-.034.02-.034.019-.036.018-.035.017-.036.016-.037.016-.036.014-.037.013-.038.013-.037.012-.038.01-.04.01-.037.008-.04.008-.038.006-.04.006-.04.005-.039.003-.04.002-.039.003H0V14h12.224l.05-.002.05-.002.049-.004.05-.004.05-.006.048-.007.05-.008.048-.008.049-.01.048-.01.048-.012.048-.012.048-.014.047-.014.047-.016.047-.017.047-.017.046-.018.045-.019.045-.02.044-.022.045-.022.043-.023.044-.023.042-.025.042-.026.042-.026.04-.027.04-.029.04-.029.04-.03.038-.03.037-.031.037-.032.036-.033.036-.033.034-.034.035-.036.033-.035.032-.036.032-.037.03-.038.03-.038.03-.04.028-.038.027-.04.027-.041.026-.041.025-.042.023-.042.023-.042.022-.043.02-.044.02-.044.02-.044.017-.044.018-.046.016-.045.015-.046.014-.046.013-.046.012-.047.011-.046.01-.047.009-.047.008-.047.007-.048.005-.048.005-.047.004-.048.002-.048.002-.048v-.096zM.002 2.353l.003.049.003.047.005.048.006.048.007.047.008.048.008.047.01.047.011.046.013.047.012.046.014.046.016.045.016.046.017.045.017.044.02.045.02.044.02.043.022.043.024.043.023.042.025.042.026.041.026.04.027.04.029.04.029.039.03.038.03.037.032.038.033.035.033.036.034.035.035.034.035.034.036.033.037.032.038.031.039.03.001.002.055-.031.048-.027.05-.027.007-.002-.013-.023L1 3.872l-.017-.035-.015-.035-.015-.036L.94 3.73l-.014-.035-.011-.037-.011-.037-.01-.037-.01-.037-.007-.037-.007-.038-.006-.038-.004-.038-.004-.038-.003-.038v-.039L.85 3.243l.001-.038.001-.038.003-.04.004-.037.004-.038.006-.037.007-.038.008-.038.009-.037.01-.037.01-.037.012-.036.014-.036.014-.036.015-.036.015-.035.017-.035.018-.033.019-.034.02-.033.02-.033.021-.032.023-.032.023-.03.025-.031.024-.03.026-.03.026-.028.028-.028.028-.027.029-.026.03-.025.029-.025.03-.024.033-.023.032-.023.033-.021.033-.021.034-.02.034-.019.035-.018.036-.017.036-.016.036-.016.036-.014.038-.013.037-.013.038-.012.038-.01.039-.01.038-.008.039-.008.04-.006.039-.006.039-.005.04-.003.039-.003.04-.002h12.213V0H2.291l-.049.002-.05.002-.05.004-.05.004-.049.006-.048.007-.05.007-.049.009-.048.01-.049.01-.048.012-.047.012L1.655.1l-.047.014-.047.016-.046.016-.047.018-.046.018L1.377.2l-.045.02-.045.021-.044.023-.044.023-.043.023-.043.025-.041.026-.042.026-.04.027-.04.028-.041.03-.038.03-.04.03-.037.03-.037.033-.036.033L.686.66.651.695.617.73.584.766.55.802.52.84.49.877.458.915l-.03.04-.028.038-.027.04-.026.041-.026.04-.025.043-.023.042-.024.042-.021.044-.021.043-.02.044-.02.044-.017.044-.017.045-.016.046-.016.045-.014.046-.012.047-.013.046-.01.047-.01.047-.01.047-.007.047-.007.048-.006.048-.005.047-.003.048-.003.048L0 2.21v.096z"></path>
20
+ </svg>
21
+ );
22
+ }
@@ -0,0 +1,101 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/ServiceStatus';
3
+
4
+ export default function IconServiceStatus({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
11
+ <path
12
+ d="M8.5 13.5L6.5 11.5V7.5L8.5 5.5"
13
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
14
+ style={{
15
+ '--icon-stroke': lightFill,
16
+ '--icon-stroke-dark': darkFill,
17
+ } as React.CSSProperties}
18
+ strokeMiterlimit="10"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ <path
23
+ d="M6.5 15.5L3.5 12.5V6.5L6.5 3.5"
24
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
25
+ style={{
26
+ '--icon-stroke': lightFill,
27
+ '--icon-stroke-dark': darkFill,
28
+ } as React.CSSProperties}
29
+ strokeMiterlimit="10"
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ <path
34
+ d="M4.5 17.5L0.5 13.5V5.5L4.5 1.5"
35
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
36
+ style={{
37
+ '--icon-stroke': lightFill,
38
+ '--icon-stroke-dark': darkFill,
39
+ } as React.CSSProperties}
40
+ strokeMiterlimit="10"
41
+ strokeLinecap="round"
42
+ strokeLinejoin="round"
43
+ />
44
+ <path
45
+ d="M14.5 13.5L16.5 11.5V7.5L14.5 5.5"
46
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
47
+ style={{
48
+ '--icon-stroke': lightFill,
49
+ '--icon-stroke-dark': darkFill,
50
+ } as React.CSSProperties}
51
+ strokeMiterlimit="10"
52
+ strokeLinecap="round"
53
+ strokeLinejoin="round"
54
+ />
55
+ <path
56
+ d="M16.5 15.5L19.5 12.5V6.5L16.5 3.5"
57
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
58
+ style={{
59
+ '--icon-stroke': lightFill,
60
+ '--icon-stroke-dark': darkFill,
61
+ } as React.CSSProperties}
62
+ strokeMiterlimit="10"
63
+ strokeLinecap="round"
64
+ strokeLinejoin="round"
65
+ />
66
+ <path
67
+ d="M18.5 17.5L22.5 13.5V5.5L18.5 1.5"
68
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
69
+ style={{
70
+ '--icon-stroke': lightFill,
71
+ '--icon-stroke-dark': darkFill,
72
+ } as React.CSSProperties}
73
+ strokeMiterlimit="10"
74
+ strokeLinecap="round"
75
+ strokeLinejoin="round"
76
+ />
77
+ <path
78
+ d="M11.5 8L10 9.5L11.5 11L13.001 9.5L11.501 8H11.5Z"
79
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
80
+ style={{
81
+ '--icon-stroke': lightFill,
82
+ '--icon-stroke-dark': darkFill,
83
+ } as React.CSSProperties}
84
+ strokeMiterlimit="10"
85
+ strokeLinecap="round"
86
+ strokeLinejoin="round"
87
+ />
88
+ <path
89
+ d="M11.5 23.5V11"
90
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
91
+ style={{
92
+ '--icon-stroke': lightFill,
93
+ '--icon-stroke-dark': darkFill,
94
+ } as React.CSSProperties}
95
+ strokeMiterlimit="10"
96
+ strokeLinecap="round"
97
+ strokeLinejoin="round"
98
+ />
99
+ </svg>
100
+ );
101
+ }
@@ -0,0 +1,8 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/Sidebar';
3
+
4
+ export default function IconSidebar(props: Props): ReactNode {
5
+ return (
6
+ <svg fill="none" height="24" stroke="currentColor" strokeLinecap="round" aria-hidden="true" {...props}strokeLinejoin="round" strokeWidth="0.7px" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><rect height="16" rx="2" width="16" x="4" y="4"></rect><path d="M9 4v16"></path><path d="M15 10l-2 2l2 2"></path></svg>
7
+ );
8
+ }
@@ -0,0 +1,23 @@
1
+
2
+
3
+ import type {SVGProps, ReactNode, CSSProperties} from 'react';
4
+ import clsx from 'clsx';
5
+ import styles from './styles.module.css';
6
+
7
+ // SVG Source: https://svgl.app/
8
+ function Bluesky(props: SVGProps<SVGSVGElement>): ReactNode {
9
+ return (
10
+ <svg
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ width="1em"
13
+ height="1em"
14
+ preserveAspectRatio="xMidYMid"
15
+ viewBox="0 0 256 226"
16
+ style={{'--dark': '#0085ff', '--light': '#0085ff'} as CSSProperties}
17
+ {...props}
18
+ className={clsx(props.className, styles.blueskySvg)}>
19
+ <path d="M55.491 15.172c29.35 22.035 60.917 66.712 72.509 90.686 11.592-23.974 43.159-68.651 72.509-90.686C221.686-.727 256-13.028 256 26.116c0 7.818-4.482 65.674-7.111 75.068-9.138 32.654-42.436 40.983-72.057 35.942 51.775 8.812 64.946 38 36.501 67.187-54.021 55.433-77.644-13.908-83.696-31.676-1.11-3.257-1.63-4.78-1.637-3.485-.008-1.296-.527.228-1.637 3.485-6.052 17.768-29.675 87.11-83.696 31.676-28.445-29.187-15.274-58.375 36.5-67.187-29.62 5.041-62.918-3.288-72.056-35.942C4.482 91.79 0 33.934 0 26.116 0-13.028 34.314-.727 55.491 15.172Z" />
20
+ </svg>
21
+ );
22
+ }
23
+ export default Bluesky;
@@ -0,0 +1,9 @@
1
+
2
+
3
+ [data-theme='dark'] .blueskySvg {
4
+ fill: var(--light);
5
+ }
6
+
7
+ [data-theme='light'] .blueskySvg {
8
+ fill: var(--dark);
9
+ }
@@ -0,0 +1,28 @@
1
+
2
+
3
+ import type {ReactNode, SVGProps} from 'react';
4
+
5
+ // SVG Source: https://github.com/tabler/tabler-icons
6
+ function DefaultSocial(props: SVGProps<SVGSVGElement>): ReactNode {
7
+ return (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ width="1em"
11
+ height="1em"
12
+ viewBox="0 0 24 24"
13
+ fill="none"
14
+ stroke="currentColor"
15
+ strokeWidth="2"
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ {...props}>
19
+ <path stroke="none" d="M0 0h24v24H0z" fill="none" />
20
+ <path d="M1.2 12a10.8 10.8 0 1 0 21.6 0a10.8 10.8 0 0 0 -21.6 0" />
21
+ <path d="M1.92 8.4h20.16" />
22
+ <path d="M1.92 15.6h20.16" />
23
+ <path d="M11.4 1.2a20.4 20.4 0 0 0 0 21.6" />
24
+ <path d="M12.6 1.2a20.4 20.4 0 0 1 0 21.6" />
25
+ </svg>
26
+ );
27
+ }
28
+ export default DefaultSocial;
@@ -0,0 +1,23 @@
1
+
2
+
3
+ import type {ReactNode, SVGProps} from 'react';
4
+
5
+ // SVG Source: https://github.com/tabler/tabler-icons
6
+ function Email(props: SVGProps<SVGSVGElement>): ReactNode {
7
+ return (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ viewBox="0 0 24 24"
11
+ fill="none"
12
+ stroke="currentColor"
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={2}
16
+ {...props}>
17
+ <path stroke="none" d="M0 0h24v24H0z" />
18
+ <path d="M7.2 12a4.8 4.8 0 1 0 9.6 0 4.8 4.8 0 1 0-9.6 0" />
19
+ <path d="M16.8 12v1.8a3 3 0 0 0 6 0V12a10.8 10.8 0 1 0-6.6 9.936" />
20
+ </svg>
21
+ );
22
+ }
23
+ export default Email;
@@ -0,0 +1,24 @@
1
+
2
+
3
+ import type {ReactNode, SVGProps, CSSProperties} from 'react';
4
+
5
+ import clsx from 'clsx';
6
+ import styles from './styles.module.css';
7
+
8
+ // SVG Source: https://svgl.app/
9
+ function GitHub(props: SVGProps<SVGSVGElement>): ReactNode {
10
+ return (
11
+ <svg
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ width="1em"
14
+ height="1em"
15
+ viewBox="0 0 256 250"
16
+ preserveAspectRatio="xMidYMid"
17
+ style={{'--dark': '#000', '--light': '#fff'} as CSSProperties}
18
+ {...props}
19
+ className={clsx(props.className, styles.githubSvg)}>
20
+ <path d="M128.001 0C57.317 0 0 57.307 0 128.001c0 56.554 36.676 104.535 87.535 121.46 6.397 1.185 8.746-2.777 8.746-6.158 0-3.052-.12-13.135-.174-23.83-35.61 7.742-43.124-15.103-43.124-15.103-5.823-14.795-14.213-18.73-14.213-18.73-11.613-7.944.876-7.78.876-7.78 12.853.902 19.621 13.19 19.621 13.19 11.417 19.568 29.945 13.911 37.249 10.64 1.149-8.272 4.466-13.92 8.127-17.116-28.431-3.236-58.318-14.212-58.318-63.258 0-13.975 5-25.394 13.188-34.358-1.329-3.224-5.71-16.242 1.24-33.874 0 0 10.749-3.44 35.21 13.121 10.21-2.836 21.16-4.258 32.038-4.307 10.878.049 21.837 1.47 32.066 4.307 24.431-16.56 35.165-13.12 35.165-13.12 6.967 17.63 2.584 30.65 1.255 33.873 8.207 8.964 13.173 20.383 13.173 34.358 0 49.163-29.944 59.988-58.447 63.157 4.591 3.972 8.682 11.762 8.682 23.704 0 17.126-.148 30.91-.148 35.126 0 3.407 2.304 7.398 8.792 6.14C219.37 232.5 256 184.537 256 128.002 256 57.307 198.691 0 128.001 0Zm-80.06 182.34c-.282.636-1.283.827-2.194.39-.929-.417-1.45-1.284-1.15-1.922.276-.655 1.279-.838 2.205-.399.93.418 1.46 1.293 1.139 1.931Zm6.296 5.618c-.61.566-1.804.303-2.614-.591-.837-.892-.994-2.086-.375-2.66.63-.566 1.787-.301 2.626.591.838.903 1 2.088.363 2.66Zm4.32 7.188c-.785.545-2.067.034-2.86-1.104-.784-1.138-.784-2.503.017-3.05.795-.547 2.058-.055 2.861 1.075.782 1.157.782 2.522-.019 3.08Zm7.304 8.325c-.701.774-2.196.566-3.29-.49-1.119-1.032-1.43-2.496-.726-3.27.71-.776 2.213-.558 3.315.49 1.11 1.03 1.45 2.505.701 3.27Zm9.442 2.81c-.31 1.003-1.75 1.459-3.199 1.033-1.448-.439-2.395-1.613-2.103-2.626.301-1.01 1.747-1.484 3.207-1.028 1.446.436 2.396 1.602 2.095 2.622Zm10.744 1.193c.036 1.055-1.193 1.93-2.715 1.95-1.53.034-2.769-.82-2.786-1.86 0-1.065 1.202-1.932 2.733-1.958 1.522-.03 2.768.818 2.768 1.868Zm10.555-.405c.182 1.03-.875 2.088-2.387 2.37-1.485.271-2.861-.365-3.05-1.386-.184-1.056.893-2.114 2.376-2.387 1.514-.263 2.868.356 3.061 1.403Z" />
21
+ </svg>
22
+ );
23
+ }
24
+ export default GitHub;
@@ -0,0 +1,9 @@
1
+
2
+
3
+ [data-theme='dark'] .githubSvg {
4
+ fill: var(--light);
5
+ }
6
+
7
+ [data-theme='light'] .githubSvg {
8
+ fill: var(--dark);
9
+ }
@@ -0,0 +1,23 @@
1
+
2
+ import type {SVGProps, ReactNode, CSSProperties} from 'react';
3
+ import clsx from 'clsx';
4
+ import styles from './styles.module.css';
5
+
6
+ // SVG Source: https://svgl.app/
7
+ function Instagram(props: SVGProps<SVGSVGElement>): ReactNode {
8
+ return (
9
+ <svg
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ width="1em"
12
+ height="1em"
13
+ preserveAspectRatio="xMidYMid"
14
+ viewBox="0 0 256 256"
15
+ style={{'--dark': '#000', '--light': '#fff'} as CSSProperties}
16
+ {...props}
17
+ className={clsx(props.className, styles.instagramSvg)}>
18
+ <path d="M128 23.064c34.177 0 38.225.13 51.722.745 12.48.57 19.258 2.655 23.769 4.408 5.974 2.322 10.238 5.096 14.717 9.575 4.48 4.479 7.253 8.743 9.575 14.717 1.753 4.511 3.838 11.289 4.408 23.768.615 13.498.745 17.546.745 51.723 0 34.178-.13 38.226-.745 51.723-.57 12.48-2.655 19.257-4.408 23.768-2.322 5.974-5.096 10.239-9.575 14.718-4.479 4.479-8.743 7.253-14.717 9.574-4.511 1.753-11.289 3.839-23.769 4.408-13.495.616-17.543.746-51.722.746-34.18 0-38.228-.13-51.723-.746-12.48-.57-19.257-2.655-23.768-4.408-5.974-2.321-10.239-5.095-14.718-9.574-4.479-4.48-7.253-8.744-9.574-14.718-1.753-4.51-3.839-11.288-4.408-23.768-.616-13.497-.746-17.545-.746-51.723 0-34.177.13-38.225.746-51.722.57-12.48 2.655-19.258 4.408-23.769 2.321-5.974 5.095-10.238 9.574-14.717 4.48-4.48 8.744-7.253 14.718-9.575 4.51-1.753 11.288-3.838 23.768-4.408 13.497-.615 17.545-.745 51.723-.745M128 0C93.237 0 88.878.147 75.226.77c-13.625.622-22.93 2.786-31.071 5.95-8.418 3.271-15.556 7.648-22.672 14.764C14.367 28.6 9.991 35.738 6.72 44.155 3.555 52.297 1.392 61.602.77 75.226.147 88.878 0 93.237 0 128c0 34.763.147 39.122.77 52.774.622 13.625 2.785 22.93 5.95 31.071 3.27 8.417 7.647 15.556 14.763 22.672 7.116 7.116 14.254 11.492 22.672 14.763 8.142 3.165 17.446 5.328 31.07 5.95 13.653.623 18.012.77 52.775.77s39.122-.147 52.774-.77c13.624-.622 22.929-2.785 31.07-5.95 8.418-3.27 15.556-7.647 22.672-14.763 7.116-7.116 11.493-14.254 14.764-22.672 3.164-8.142 5.328-17.446 5.95-31.07.623-13.653.77-18.012.77-52.775s-.147-39.122-.77-52.774c-.622-13.624-2.786-22.929-5.95-31.07-3.271-8.418-7.648-15.556-14.764-22.672C227.4 14.368 220.262 9.99 211.845 6.72c-8.142-3.164-17.447-5.328-31.071-5.95C167.122.147 162.763 0 128 0Zm0 62.27C91.698 62.27 62.27 91.7 62.27 128c0 36.302 29.428 65.73 65.73 65.73 36.301 0 65.73-29.428 65.73-65.73 0-36.301-29.429-65.73-65.73-65.73Zm0 108.397c-23.564 0-42.667-19.103-42.667-42.667S104.436 85.333 128 85.333s42.667 19.103 42.667 42.667-19.103 42.667-42.667 42.667Zm83.686-110.994c0 8.484-6.876 15.36-15.36 15.36-8.483 0-15.36-6.876-15.36-15.36 0-8.483 6.877-15.36 15.36-15.36 8.484 0 15.36 6.877 15.36 15.36Z" />
19
+ </svg>
20
+ );
21
+ }
22
+
23
+ export default Instagram;