Skip to content

Commit c21b24c

Browse files
committed
feat: sanitize home page
1 parent 3be6700 commit c21b24c

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

docs/.vuepress/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const basePath = process.env.BASE_PATH || "/vue-ellipse-progress-docs/";
88
export default {
99
lang: "en-US",
1010
title: "vue-ellipse-progress",
11-
description: "This is not my first VuePress site",
11+
description: "Beautiful and smooth circular progress bars for your Vue app",
1212
base: isDevMode ? "/" : basePath,
1313
markdown: {
1414
code: {
@@ -23,7 +23,7 @@ export default {
2323
},
2424
}),
2525
theme: defaultTheme({
26-
logo: "https://vuejs.org/images/logo.png",
26+
//logo: "https://vuejs.org/images/logo.png",
2727
repo: "https://github.com/setaman/vue-ellipse-progress/tree/v2-dev",
2828
repoLabel: "GitHub",
2929
colorMode: "auto",

docs/README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
---
22
home: true
3+
title: Home
4+
actions:
5+
- text: Get Started
6+
link: /guide/
7+
type: primary
8+
- text: Configuration
9+
link: /guide/options/
10+
type: secondary
11+
features:
12+
- title: Beautiful progress bars
13+
details: Flexible and smooth Vue.js plugin. Whether you require sleek progress bars or stylish loading spinners, the plugin has you covered
14+
- title: Simplicity First
15+
details: Designed for simplicity, offering good defaults for a quick start and equipped with flexible configuration options
16+
- title: Without Dependencies
17+
details: Lightweight and dependency-free, ensuring a hassle-free integration into your Vue application
18+
footer: MIT Licensed
319
---
4-
5-
::: warning Early alpha
6-
WIP!
7-
:::

docs/guide/development.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,3 @@ Start the project and open the displayed link in your browser:
2828
```
2929
npm run serve
3030
```
31-
32-
## Working with code
33-
34-
// TODO

docs/guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ initialize the component as a plugin or to import it directly.
1919
<CodeGroupItem title="NPM" active>
2020

2121
```bash:no-line-numbers
22-
npm i vue-ellipse-progress
22+
npm i vue-ellipse-progress@next
2323
```
2424

2525
</CodeGroupItem>
2626

2727
<CodeGroupItem title="Yarn">
2828

2929
```bash:no-line-numbers
30-
yarn add vue-ellipse-progress
30+
yarn add vue-ellipse-progress@next
3131
```
3232

3333
</CodeGroupItem>

docs/guide/options/gap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| type | values | default |
66
|--------|------------|---------|
7-
| Number | any Number | |
7+
| Number | any Number | 0 |
88

99
Defines the gap in pixels from one circle to the previous circle. It will be applied only if [`data`](./data.md) prop is used.
1010
The gap ca be specified for each circle in the [`data`](./data.md).

0 commit comments

Comments
 (0)