Skip to content

Commit

Permalink
rewrite doc a little
Browse files Browse the repository at this point in the history
  • Loading branch information
yosipy committed Jul 27, 2024
1 parent 4fb147f commit 3523b5c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 149 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ dist-ssr
*.sln
*.sw?

docs/.vitepress/cache
docs/.vitepress/cache
29 changes: 16 additions & 13 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
import { defineConfig } from 'vitepress'
import { defineConfig } from "vitepress"

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "react-dropzone-vv docs",
description: "A VitePress Site",
title: "react-dropzone-vv",
description: "react-dropzone-vv docs",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Examples', link: '/markdown-examples' }
{ text: "Home", link: "/" },
{ text: "Examples", link: "/examples/basic-examples" },
],

sidebar: [
{
text: 'Examples',
text: "Examples",
items: [
{ text: 'Markdown Examples', link: '/markdown-examples' },
{ text: 'Runtime API Examples', link: '/api-examples' }
]
}
{ text: "Basic Examples", link: "/examples/basic-examples" },
{
text: "Styling Dropzone Examples",
link: "/examples/styling-dropzone-examples",
},
],
},
],

socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
{ icon: "github", link: "https://github.com/yosipy/react-dropzone-vv" },
],
},
})
49 changes: 0 additions & 49 deletions docs/api-examples.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/examples/basic-examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Basic Examples
1 change: 1 addition & 0 deletions docs/examples/styling-dropzone-examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Styling Dropzone Examples
1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ features:
- title: Feature C
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
---

85 changes: 0 additions & 85 deletions docs/markdown-examples.md

This file was deleted.

0 comments on commit 3523b5c

Please sign in to comment.