Skip to content

Commit cf1288e

Browse files
committed
docs(getting-started): replace Timeline with Steps component
- Remove unused Timeline and Step imports - Replace Timeline component with Steps component for better visual representation - Update content formatting for improved readability
1 parent 44d16d4 commit cf1288e

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

src/content/docs/getting-started.mdx

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,28 @@ title: 'Getting Started: Local Setup'
33
description: An overview of the local setup process for the entire Flutter News App ecosystem.
44
---
55

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

88
Welcome to the local setup guide for the Flutter News App Toolkit. To get the full ecosystem running on your local machine, you will need to set up each of the three core components: the **API Server**, the **Web Dashboard**, and the **Mobile Client**.
99

1010
Follow the guides below in the recommended order to ensure a smooth setup process.
1111

12-
<Timeline>
13-
<Step title="Set Up the API Server">
14-
Start by getting the backend running. The API server handles data,
15-
authentication, and configuration for both the dashboard and the mobile app.
16-
17-
[Go to API Setup Guide &rarr;](/docs/api-server/local-setup/)
18-
</Step>
19-
<Step title="Set Up the Web Dashboard">
20-
Next, run the web-based administrative dashboard. You'll use this to manage
21-
content and configure the application.
22-
23-
[Go to Dashboard Setup Guide &rarr;](/docs/web-dashboard/local-setup/)
24-
</Step>
25-
<Step title="Set Up the Mobile Client">
26-
Finally, set up the Flutter mobile app for iOS and Android to see the
27-
end-user experience.
28-
29-
[Go to Mobile App Setup Guide &rarr;](/docs/mobile-client/local-setup/)
30-
</Step>
31-
</Timeline>
12+
<Steps>
13+
1. **Set Up the API Server**
14+
15+
Start by getting the backend running. The API server handles data, authentication, and configuration for both the dashboard and the mobile app.
16+
17+
[Go to API Setup Guide &rarr;](/docs/api-server/local-setup/)
18+
19+
2. **Set Up the Web Dashboard**
20+
21+
Next, run the web-based administrative dashboard. You'll use this to manage content and configure the application.
22+
23+
[Go to Dashboard Setup Guide &rarr;](/docs/web-dashboard/local-setup/)
24+
25+
3. **Set Up the Mobile Client**
26+
27+
Finally, set up the Flutter mobile app for iOS and Android to see the end-user experience.
28+
29+
[Go to Mobile App Setup Guide &rarr;](/docs/mobile-client/local-setup/)
30+
</Steps>

0 commit comments

Comments
 (0)