Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
n3ps committed Feb 7, 2024
1 parent 16ec73e commit 1e534c1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
23 changes: 11 additions & 12 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { defineConfig } from 'vitepress'
import { defineConfig } from 'vitepress';

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "OnchainKit",
description: "A collection of tools to build world-class onchain apps with CSS, React, and Typescript.",
title: 'OnchainKit',
description:
'A collection of tools to build world-class onchain apps with CSS, React, and Typescript.',
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Getting Started', link: '/getting-started' }
{ text: 'Getting Started', link: '/getting-started' },
],

sidebar: [
Expand All @@ -17,13 +18,11 @@ export default defineConfig({
items: [
{ text: 'Getting Started', link: '/getting-started' },
{ text: 'Frame Kit', link: '/frame-kit' },
{ text: 'Identity Kit', link: '/identity-kit' }
]
}
{ text: 'Identity Kit', link: '/identity-kit' },
],
},
],

socialLinks: [
{ icon: 'github', link: 'https://github.com/coinbase/onchainkit' }
]
}
})
socialLinks: [{ icon: 'github', link: 'https://github.com/coinbase/onchainkit' }],
},
});
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
.is-home {
background: url('../../logo-v-0-3.png') no-repeat center center fixed;
background-size: cover;
}
}
6 changes: 3 additions & 3 deletions docs/.vitepress/theme/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import DefaultTheme from 'vitepress/theme'
import './custom.css'
import DefaultTheme from 'vitepress/theme';
import './custom.css';

export default DefaultTheme
export default DefaultTheme;

0 comments on commit 1e534c1

Please sign in to comment.