Skip to content

Commit c903d7d

Browse files
committed
docs: update documentation links to use /docs prefix
- Add /docs prefix to API server, mobile client, and web dashboard links - Update links in card grids and deployment guides - Adjust links for local setup and deployment documentation
1 parent 133b189 commit c903d7d

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

src/content/docs/api-server/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
77

88
The API Server is the core backend component of the Flutter News App Toolkit. Built with the high-performance [Dart Frog](https://dartfrog.vgv.dev/) framework, it provides all the necessary server-side features, including robust authentication, data management, and dynamic remote configuration.
99

10-
It is designed to work seamlessly with the [Mobile Client](/mobile-client/) and the [Web Dashboard](/web-dashboard/).
10+
It is designed to work seamlessly with the [Mobile Client](/docs/mobile-client/) and the [Web Dashboard](/docs/web-dashboard/).
1111

1212
<CardGrid>
1313
<Card title="Getting Started" icon="rocket">
1414
Follow the local setup guide to get the server running on your machine.
15-
[Read more &rarr;](/api-server/getting-started/)
15+
[Read more &rarr;](/docs/api-server/getting-started/)
1616
</Card>
1717
<Card title="Deployment" icon="cloud">
1818
Learn how to deploy the API server to a production environment.
19-
[Read more &rarr;](/api-server/deployment/)
19+
[Read more &rarr;](/docs/api-server/deployment/)
2020
</Card>
2121
<Card title="Features" icon="puzzle">
2222
Explore the key features and architecture of the API server.
23-
[Read more &rarr;](/api-server/features/authentication/)
23+
[Read more &rarr;](/docs/api-server/features/authentication/)
2424
</Card>
2525
</CardGrid>

src/content/docs/deployment-guides.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ Once you have the ecosystem running locally, the next step is to deploy the comp
1010
<CardGrid>
1111
<Card title="1. Deploy the API Server" icon="cloud">
1212
Learn how to configure and deploy the Dart Frog backend to a production server using Docker.
13-
<a href="/api-server/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
13+
<a href="/docs/api-server/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
1414
Go to API Deployment Guide &rarr;
1515
</a>
1616
</Card>
1717
<Card title="2. Deploy the Web Dashboard" icon="laptop">
1818
Follow these steps to build and deploy the Flutter web dashboard to a static hosting provider.
19-
<a href="/web-dashboard/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
19+
<a href="/docs/web-dashboard/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
2020
Go to Dashboard Deployment Guide &rarr;
2121
</a>
2222
</Card>
2323
<Card title="3. Deploy the Mobile Client" icon="phone">
2424
Prepare and build your Flutter mobile app for release on the Apple App Store and Google Play Store.
25-
<a href="/mobile-client/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
25+
<a href="/docs/mobile-client/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
2626
Go to Mobile App Deployment Guide &rarr;
2727
</a>
2828
</Card>

src/content/docs/getting-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ Follow the guides below in the recommended order to ensure a smooth setup proces
1212
<CardGrid>
1313
<Card title="1. Set Up the API Server" icon="cloud">
1414
Start by getting the backend running. The API server handles data, authentication, and configuration for both the dashboard and the mobile app.
15-
<a href="/api-server/local-setup/" style={{ display: 'block', marginTop: '1rem' }}>
15+
<a href="/docs/api-server/local-setup/" style={{ display: 'block', marginTop: '1rem' }}>
1616
Go to API Setup Guide &rarr;
1717
</a>
1818
</Card>
1919
<Card title="2. Set Up the Web Dashboard" icon="laptop">
2020
Next, run the web-based administrative dashboard. You'll use this to manage content and configure the application.
21-
<a href="/web-dashboard/local-setup/" style={{ display: 'block', marginTop: '1rem' }}>
21+
<a href="/docs/web-dashboard/local-setup/" style={{ display: 'block', marginTop: '1rem' }}>
2222
Go to Dashboard Setup Guide &rarr;
2323
</a>
2424
</Card>
2525
<Card title="3. Set Up the Mobile Client" icon="phone">
2626
Finally, set up the Flutter mobile app for iOS and Android to see the end-user experience.
27-
<a href="/mobile-client/local-setup/" style={{ display: 'block', marginTop: '1rem' }}>
27+
<a href="/docs/mobile-client/local-setup/" style={{ display: 'block', marginTop: '1rem' }}>
2828
Go to Mobile App Setup Guide &rarr;
2929
</a>
3030
</Card>

src/content/docs/web-dashboard/deployment.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This guide covers the essential steps for deploying the Flutter News App Web Das
2222
```
2323

2424
<Aside>
25-
Ensure that the `baseUrl` for the `production` environment in `lib/app/config/app_config.dart` points to the correct URL of your deployed [API Server](/api-server/deployment/).
25+
Ensure that the `baseUrl` for the `production` environment in `lib/app/config/app_config.dart` points to the correct URL of your deployed [API Server](/docs/api-server/deployment/).
2626
</Aside>
2727

2828
2. **Build the Web Application**

src/content/docs/web-dashboard/local-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This guide will walk you through setting up and running the Flutter News App Web
5050
```
5151

5252
<Aside>
53-
For the `development` environment, you must have the [API Server running locally](/getting-started/local-setup-api) first.
53+
For the `development` environment, you must have the [API Server running locally](/docs/getting-started/local-setup-api) first.
5454
</Aside>
5555

5656
5. **Run the Development Server**

src/content/docs/web-dashboard/web-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This guide covers the essential steps for deploying the Flutter News App Web Das
2222
```
2323

2424
<Aside>
25-
Ensure that the `baseUrl` for the `production` environment in `lib/app/config/app_config.dart` points to the correct URL of your deployed [API Server](/deployment/api-server/).
25+
Ensure that the `baseUrl` for the `production` environment in `lib/app/config/app_config.dart` points to the correct URL of your deployed [API Server](/docs/deployment/api-server/).
2626
</Aside>
2727

2828
2. **Build the Web Application**

0 commit comments

Comments
 (0)