Skip to content

Commit b554bc7

Browse files
committed
docs(mobile-client): add features overview page
- Create new page to showcase key features of the Flutter News App Mobile Client - Include CardGrid component to display individual feature guides - Add descriptions and links for each feature: Headlines Feed, Headline Details, Entity Details, Search, Authentication, Account Management, and Settings
1 parent 1454c0f commit b554bc7

File tree

1 file changed

+39
-0
lines changed
  • src/content/docs/mobile-client/features

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: Features
3+
description: Explore the key features of the Flutter News App Mobile Client.
4+
---
5+
6+
import { Card, CardGrid } from '@astrojs/starlight/components';
7+
8+
The mobile client is packed with features designed for a modern, engaging news application. Explore the guides below to understand its core capabilities.
9+
10+
<CardGrid>
11+
<Card title="Headlines Feed" icon="newspaper">
12+
Learn how the main news feed is managed, including filtering and dynamic content.
13+
[Read more &rarr;](/docs/mobile-client/features/headlines-feed/)
14+
</Card>
15+
<Card title="Headline Details" icon="article">
16+
Learn how the mobile client displays individual articles and similar content.
17+
[Read more &rarr;](/docs/mobile-client/features/headline-details/)
18+
</Card>
19+
<Card title="Entity Details" icon="document">
20+
Learn how the app displays detailed pages for topics and sources.
21+
[Read more &rarr;](/docs/mobile-client/features/entity-details/)
22+
</Card>
23+
<Card title="Search" icon="search">
24+
Learn how the search feature allows users to find headlines, topics, and sources.
25+
[Read more &rarr;](/docs/mobile-client/features/search/)
26+
</Card>
27+
<Card title="Authentication" icon="shield">
28+
Learn how user authentication is handled in the mobile client.
29+
[Read more &rarr;](/docs/mobile-client/features/authentication/)
30+
</Card>
31+
<Card title="Account Management" icon="user-cog">
32+
Learn how users can manage their preferences, saved articles, and followed content.
33+
[Read more &rarr;](/docs/mobile-client/features/account/)
34+
</Card>
35+
<Card title="Settings" icon="settings">
36+
Learn how users can customize the application's appearance, language, and feed display.
37+
[Read more &rarr;](/docs/mobile-client/features/settings/)
38+
</Card>
39+
</CardGrid>

0 commit comments

Comments
 (0)