@bbki.ng/site 1.1.25 → 1.1.26
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 +2 -0
- package/package.json +1 -1
- package/src/components/Logger.tsx +8 -0
- package/src/main.tsx +2 -0
- package/src/pages/cover/index.tsx +17 -21
- package/vite.config.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/main.tsx
CHANGED
|
@@ -6,6 +6,7 @@ import { ReloadPrompt } from "@/components";
|
|
|
6
6
|
import "@bbki.ng/components/style";
|
|
7
7
|
import App from "./app";
|
|
8
8
|
import "./main.css";
|
|
9
|
+
import Logger from "@/components/Logger";
|
|
9
10
|
|
|
10
11
|
const container = document.getElementById("root") as Element;
|
|
11
12
|
const root = createRoot(container);
|
|
@@ -15,6 +16,7 @@ root.render(
|
|
|
15
16
|
<Router>
|
|
16
17
|
<App />
|
|
17
18
|
<Toaster />
|
|
19
|
+
<Logger />
|
|
18
20
|
<ReloadPrompt />
|
|
19
21
|
</Router>
|
|
20
22
|
</React.StrictMode>
|
|
@@ -1,28 +1,24 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { CenterLinkList } from "@/components";
|
|
3
|
-
import { Footer } from "@/components/Footer";
|
|
4
3
|
|
|
5
4
|
export const Cover = (props: { className: string }) => {
|
|
6
5
|
return (
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
/>
|
|
25
|
-
<Footer />
|
|
26
|
-
</div>
|
|
6
|
+
<CenterLinkList
|
|
7
|
+
links={[
|
|
8
|
+
{
|
|
9
|
+
to: "/projects",
|
|
10
|
+
name: "cd ./projects",
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
to: "/blog",
|
|
14
|
+
name: "cd ./blog",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
to: "/now",
|
|
18
|
+
name: "cd ./now",
|
|
19
|
+
},
|
|
20
|
+
]}
|
|
21
|
+
title=" "
|
|
22
|
+
/>
|
|
27
23
|
);
|
|
28
24
|
};
|