Skip to content

Commit 4804f59

Browse files
committedApr 12, 2023
add logo and setup nextra
1 parent 715f58c commit 4804f59

File tree

5 files changed

+5866
-10
lines changed

5 files changed

+5866
-10
lines changed
 

‎.DS_Store

6 KB
Binary file not shown.

‎.github/sveltris-logo.png

152 KB
Loading

‎README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<p align="center">
2+
<img src="https://raw.githubusercontent.com/mokshit06/sveltris/main/.github/sveltris-logo.png" width="150px" />
3+
<h2 align="center">Sveltris</h2>
4+
<p align="center">
5+
Piece together <strong>any</strong> framework with Svelte <em>like Tetris</em>
6+
</p>
7+
</p>

‎docs/package-lock.json

+5,843
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docs/theme.config.tsx

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
1-
import React from 'react'
2-
import { DocsThemeConfig } from 'nextra-theme-docs'
1+
import React from 'react';
2+
import { DocsThemeConfig } from 'nextra-theme-docs';
33

44
const config: DocsThemeConfig = {
5-
logo: <span>My Project</span>,
5+
logo: (
6+
<span
7+
// className={
8+
// tw.text_base.md(tw.text_lg).mx_2.font_extrabold.inline.select_none
9+
// }
10+
style={{ fontFamily: 'IBM Plex Mono, monospace' }}
11+
>
12+
sveltris
13+
</span>
14+
),
615
project: {
7-
link: 'https://github.com/shuding/nextra-docs-template',
16+
link: 'https://github.com/mokshit06/sveltris',
817
},
9-
chat: {
10-
link: 'https://discord.com',
11-
},
12-
docsRepositoryBase: 'https://github.com/shuding/nextra-docs-template',
18+
docsRepositoryBase: 'https://github.com/mokshit06/sveltris',
1319
footer: {
1420
text: 'Nextra Docs Template',
1521
},
16-
}
22+
};
1723

18-
export default config
24+
export default config;

0 commit comments

Comments
 (0)
Please sign in to comment.