Skip to content

Commit 0560585

Browse files
committed
docs: update deployment guides layout and content
- Replace CardGrid component with Timeline component - Update each deployment step to use the new Step component - Improve readability and consistency of the guide
1 parent c903d7d commit 0560585

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

src/content/docs/deployment-guides.mdx

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@ 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 { Card, CardGrid } from '@astrojs/starlight/components';
6+
import { Timeline, Step } 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-
<CardGrid>
11-
<Card title="1. Deploy the API Server" icon="cloud">
12-
Learn how to configure and deploy the Dart Frog backend to a production server using Docker.
13-
<a href="/docs/api-server/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
14-
Go to API Deployment Guide &rarr;
15-
</a>
16-
</Card>
17-
<Card title="2. Deploy the Web Dashboard" icon="laptop">
18-
Follow these steps to build and deploy the Flutter web dashboard to a static hosting provider.
19-
<a href="/docs/web-dashboard/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
20-
Go to Dashboard Deployment Guide &rarr;
21-
</a>
22-
</Card>
23-
<Card title="3. Deploy the Mobile Client" icon="phone">
24-
Prepare and build your Flutter mobile app for release on the Apple App Store and Google Play Store.
25-
<a href="/docs/mobile-client/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
26-
Go to Mobile App Deployment Guide &rarr;
27-
</a>
28-
</Card>
29-
</CardGrid>
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>

0 commit comments

Comments
 (0)