Skip to content

Commit 44d16d4

Browse files
committed
docs(guides): rewrite deployment guides using Steps component
- Replace Timeline component with Steps component for better visual representation - Update content format to match new Steps component structure - Improve readability and user experience of the deployment guides
1 parent 3fdf296 commit 44d16d4

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

src/content/docs/deployment-guides.mdx

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,26 @@ title: 'Deployment Guides: From Local to Live'
33
description: A collection of guides to help you deploy the API server, mobile app, and web dashboard to production environments.
44
---
55

6-
import { Timeline, Step } from '@astrojs/starlight/components';
6+
import { Steps } from '@astrojs/starlight/components';
77

88
Once you have the ecosystem running locally, the next step is to deploy the components to production. These guides provide step-by-step instructions for preparing and deploying each part of the toolkit.
99

10-
<Timeline>
11-
<Step title="Deploy the API Server">
12-
Learn how to configure and deploy the Dart Frog backend to a production
13-
server using Docker.
14-
15-
[Go to API Deployment Guide &rarr;](/docs/api-server/deployment/)
16-
</Step>
17-
<Step title="Deploy the Web Dashboard">
18-
Follow these steps to build and deploy the Flutter web dashboard to a
19-
static hosting provider.
20-
21-
[Go to Dashboard Deployment Guide &rarr;](/docs/web-dashboard/deployment/)
22-
</Step>
23-
<Step title="Deploy the Mobile Client">
24-
Prepare and build your Flutter mobile app for release on the Apple App
25-
Store and Google Play Store.
26-
27-
[Go to Mobile App Deployment Guide &rarr;](/docs/mobile-client/deployment/)
28-
</Step>
29-
</Timeline>
10+
<Steps>
11+
1. **Deploy the API Server**
12+
13+
Learn how to configure and deploy the Dart Frog backend to a production server using Docker.
14+
15+
[Go to API Deployment Guide &rarr;](/docs/api-server/deployment/)
16+
17+
2. **Deploy the Web Dashboard**
18+
19+
Follow these steps to build and deploy the Flutter web dashboard to a static hosting provider.
20+
21+
[Go to Dashboard Deployment Guide &rarr;](/docs/web-dashboard/deployment/)
22+
23+
3. **Deploy the Mobile Client**
24+
25+
Prepare and build your Flutter mobile app for release on the Apple App Store and Google Play Store.
26+
27+
[Go to Mobile App Deployment Guide &rarr;](/docs/mobile-client/deployment/)
28+
</Steps>

0 commit comments

Comments
 (0)