@bbki.ng/site 5.1.1 → 5.1.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 5.1.2
4
+
3
5
  ## 5.1.1
4
6
 
5
7
  ## 5.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/blog/app.tsx CHANGED
@@ -2,12 +2,9 @@ import React, { useContext } from "react";
2
2
  import { Outlet, Route, Routes } from "react-router-dom";
3
3
  import { Nav, NotFound, Page } from "@bbki.ng/components";
4
4
  import { HotKeyNav } from "./components";
5
- import { threeColWrapper } from "@/components/with_wrapper";
6
5
  import { Cover } from "./pages";
7
6
 
8
7
  import ArticlePage from "@/pages/extensions/txt/article";
9
- import NowPage from "@/pages/now";
10
- import PhotoProjects from "@/pages/extensions/png/png_projects";
11
8
  import Tags from "@/pages/tags";
12
9
  import TagsResult from "@/pages/tags/tag_result";
13
10
  import Txt from "@/pages/extensions/txt";
@@ -16,7 +13,6 @@ import { usePaths } from "@/hooks";
16
13
  import { Login } from "@/pages/login";
17
14
  import { SWR } from "@/swr";
18
15
  import { GlobalLoadingContext } from "@/context/global_loading_state_provider";
19
- import { UploadPage } from "@/pages/upload";
20
16
  import { AppCtxMenu } from "@/components/app_ctx_menu";
21
17
  import { Pochacco, PochaccoPose } from "@/components/Pochacco/Pochacco";
22
18
  import { Role, useRole } from "@/hooks/use_role";
@@ -25,7 +21,6 @@ import { BBContext } from "@/context/bbcontext";
25
21
  import { useClipboardToPost } from "@/hooks/use_clipboard_to_post";
26
22
  import { useSharedStringToPost } from "@/hooks/use_shared_string_to_post";
27
23
  import { ThreeColLayout, ErrorBoundary } from "@bbki.ng/components";
28
- import { Version } from "./components/version";
29
24
 
30
25
  const Layout = () => {
31
26
  const { isLoading, isFontLoading } = useContext(GlobalLoadingContext);
@@ -1,8 +1,7 @@
1
1
  import React, { useContext } from "react";
2
2
  import { CenterLinkList } from "@/components";
3
- import { EffectLayer } from "@/components/effect-layer/EffectLayer";
4
3
  import { GlobalRoutesContext } from "@/context/global_routes_provider";
5
- import { Version } from "@/components/version";
4
+ import { Version } from "@/components/Version";
6
5
 
7
6
  export const Cover = (props: { className?: string }) => {
8
7
  const globalRouteCtx = useContext(GlobalRoutesContext);