Skip to content

Commit d8208a9

Browse files
committed
Updated more docs content.
1 parent bc327d6 commit d8208a9

7 files changed

Lines changed: 14 additions & 16 deletions

File tree

.vortex/docs/content/README.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,10 @@ Refer to [Contributing](contributing) for more details.
6767

6868
**Vortex** is licensed under the [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.en.html) license. See
6969
the [LICENSE](https://github.com/drevops/vortex/blob/develop/LICENSE) file for more details.
70+
71+
:::tip
72+
73+
Head over to the [Getting Started](./getting-started), [Features](./features) or
74+
[Installation](./installation) pages to learn more!
75+
76+
:::

.vortex/docs/content/features.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ import {
1111
VerticalTabPanel
1212
} from '@site/src/components/VerticalTabs';
1313

14-
Select a feature from the tab list to view details in the content panel.
15-
1614
<!-- markdownlint-disable -->
1715

1816
<VerticalTabs>
@@ -80,7 +78,7 @@ Select a feature from the tab list to view details in the content panel.
8078

8179
</VerticalTabPanel>
8280

83-
<VerticalTab>🏗️ CI/CD Configurations | Continuous integration pipelines</VerticalTab>
81+
<VerticalTab>🏗️ Continuous Integration | Continuous integration configurations</VerticalTab>
8482
<VerticalTabPanel>
8583

8684
Continuous integration and deployment with multiple provider support.

.vortex/docs/content/workflows/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_position: 1
55

66
# Workflows
77

8-
> A workflow is a sequence of steps to achieve a goal
8+
> _A workflow is a sequence of steps to achieve a goal_
99
1010
This section provides an overview of the key workflows involved in website
1111
development, testing, deployment, and maintenance. Each subsection contains

.vortex/docs/docusaurus.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,6 @@ const config = {
137137
label: 'Get started',
138138
href: '/docs/getting-started',
139139
},
140-
{
141-
label: 'Install',
142-
href: '/docs/installation',
143-
},
144140
{
145141
label: 'Features',
146142
href: '/docs/features',
@@ -200,7 +196,7 @@ const config = {
200196
redirects: [
201197
{
202198
from: ['/quickstart'],
203-
to: '/docs/installation',
199+
to: '/docs/getting-started',
204200
},
205201
{
206202
from: ['/ci'],

.vortex/docs/src/components/VerticalTabs/VerticalTabs.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
display: flex;
2222
gap: 2rem;
2323
min-height: 800px;
24-
border: 2px solid var(--ifm-color-emphasis-200);
25-
border-radius: 12px;
24+
border: 1px solid var(--ifm-color-emphasis-200);
2625
overflow: hidden;
2726
}
2827

.vortex/docs/src/components/VerticalTabs/VerticalTabs.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,7 @@ const VerticalTabs = ({ children }) => {
164164
<div className="vertical-features">
165165
<div className="vertical-layout">
166166
<div className="sidebar">
167-
<div className="sidebar-header">
168-
<h3>Feature Categories</h3>
169-
</div>
167+
<div className="sidebar-header">Select a feature tab below</div>
170168
<div className="tab-list" role="tablist">
171169
{tabs.map((tab, index) => (
172170
<div

.vortex/docs/src/pages/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ import { Card, CardGrid } from '../components/Card';
7474
/>
7575
<Card
7676
icon="🏗️"
77-
title="CI/CD Configurations"
77+
title="Continuous Integration"
7878
description="Configurations for continuous integration providers GitHub Actions and CircleCI, containerized environments, and automated testing"
79-
link="/docs/features#cicd-configurations"
79+
link="/docs/features#continuous-integration"
8080
/>
8181
<Card
8282
icon="💻"

0 commit comments

Comments
 (0)