@bbki.ng/site 5.4.52 → 5.4.53

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,13 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 5.4.53
4
+
5
+ ### Patch Changes
6
+
7
+ - b65fde6: replace return btn with cd link
8
+ - Updated dependencies [b65fde6]
9
+ - @bbki.ng/ui@0.1.27
10
+
3
11
  ## 5.4.52
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "5.4.52",
3
+ "version": "5.4.53",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -14,7 +14,7 @@
14
14
  "react-dom": "^18.0.0",
15
15
  "react-router-dom": "6",
16
16
  "swr": "^2.2.5",
17
- "@bbki.ng/ui": "0.1.26"
17
+ "@bbki.ng/ui": "0.1.27"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@eslint/compat": "^1.0.0",
@@ -1,5 +1,5 @@
1
1
  import React, { ReactElement } from 'react';
2
- import { Button, Article } from '@bbki.ng/ui';
2
+ import { Button, Article, Link } from '@bbki.ng/ui';
3
3
  import { ROUTES } from '@/constants';
4
4
  import classNames from 'classnames';
5
5
  import { useNavigate } from 'react-router-dom';
@@ -38,29 +38,13 @@ export const ArticlePage = (props: ArticlePageProps) => {
38
38
  <Reaction title={title} url={window.location.href} />
39
39
  </div>*/}
40
40
  </Article>
41
- <div className="">
42
- <Button
43
- className=""
44
- type="button"
45
- onClick={() => {
46
- navgation(-1);
47
- }}
48
- >
49
- <svg
50
- data-testid="geist-icon"
51
- height="16"
52
- stroke-linejoin="round"
53
- viewBox="0 0 16 16"
54
- width="16"
55
- >
56
- <path
57
- fill-rule="evenodd"
58
- clip-rule="evenodd"
59
- d="M6.46966 13.7803L6.99999 14.3107L8.06065 13.25L7.53032 12.7197L3.56065 8.75001H14.25H15V7.25001H14.25H3.56065L7.53032 3.28034L8.06065 2.75001L6.99999 1.68935L6.46966 2.21968L1.39644 7.2929C1.00592 7.68342 1.00592 8.31659 1.39644 8.70711L6.46966 13.7803Z"
60
- fill="currentColor"
61
- ></path>
62
- </svg>
63
- </Button>
41
+ <div className="flex flex-col gap-4">
42
+ <Link className="w-fit" to="/blog">
43
+ cd ..
44
+ </Link>
45
+ <Link className="w-fit" to="/">
46
+ cd ~
47
+ </Link>
64
48
  </div>
65
49
  </>
66
50
  );