Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 1398245

Browse files
Merge pull request #66 from frontendweb3/docs
Docs
2 parents ccaeaa6 + 4d9bfa9 commit 1398245

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

docs/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@tabler/icons-react": "^2.39.0",
13-
"@types/node": "20.2.0",
14-
"@types/react": "18.2.6",
15-
"@types/react-dom": "18.2.4",
16-
"next": "13.4.2",
12+
"@tabler/icons-react": "^2.44.0",
13+
"@types/node": "20.10.4",
14+
"@types/react": "18.2.45",
15+
"@types/react-dom": "18.2.17",
16+
"next": "14.0.4",
1717
"nextra": "^2.13.2",
1818
"nextra-theme-docs": "^2.13.2",
1919
"react": "18.2.0",
2020
"react-dom": "18.2.0",
21-
"typescript": "5.0.4"
21+
"typescript": "5.3.3"
2222
}
2323
}

docs/public/favicon.ico

233 KB
Binary file not shown.

docs/src/pages/docs/theme-configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ Social media icon show on your website header. I all
157157
Option | TYPE | Require | Description
158158
------------- | ------------- | ------ | -------------
159159
url | `string` | `true` | full link of social media
160-
name | use any [Lucide icon(ex: facebook)](https://lucide.dev/icons/) | `false` | name of url
160+
name | use any [Lucide icon(ex: facebook)](https://lucide.dev/icons/) | `true` | name of url

docs/theme.config.tsx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import type { DocsThemeConfig } from "nextra-theme-docs";
22

33
const themeConfig: DocsThemeConfig = {
4-
logo: <span> Section Blog </span>,
4+
logo: (
5+
<>
6+
<svg className="fill-black dark:fill-white" fill="currentColor" width="120" height="80" viewBox="60 90 1328 380" xmlns="http://www.w3.org/2000/svg">
7+
<path fillRule="evenodd" clipRule="evenodd" d="M247.177 104.672C242.99 97.1095 232.118 97.1095 227.93 104.672L68.3924 392.805C64.333 400.137 69.6354 409.133 78.0158 409.133H397.092C405.472 409.133 410.775 400.137 406.715 392.805L247.177 104.672ZM238.312 323.4C258.367 323.4 274.625 307.864 274.625 288.7C274.625 269.536 258.367 254 238.312 254C218.258 254 202 269.536 202 288.7C202 307.864 218.258 323.4 238.312 323.4Z" />
8+
</svg>
9+
</>
10+
),
511
project: {
612
link: "https://github.com/frontendweb3/section-theme-blog",
713
},
@@ -12,20 +18,18 @@ const themeConfig: DocsThemeConfig = {
1218
</>
1319
);
1420
},
15-
docsRepositoryBase:
16-
"https://github.com/frontendweb3/section-theme-blog/blob/main/apps/docs/src/pages",
21+
docsRepositoryBase: "https://github.com/frontendweb3/section-theme-blog/blob/main/apps/docs/src/pages",
1722
footer: {
1823
text: (
1924
<span>
2025
MIT {new Date().getFullYear()} ©{" "}
2126
<a href="https://nextra.site" target="_blank">
22-
Section Blog
27+
Section Blog Theme
2328
</a>
2429
.
2530
</span>
2631
),
2732
},
28-
faviconGlyph: "/favicon.ico",
2933
};
3034

31-
export default themeConfig;
35+
export default themeConfig;

0 commit comments

Comments
 (0)