Skip to content

Commit 823897d

Browse files
committed
style(docs): enhance homepage layout and card styling
- Update page title and hero tagline for clarity - Improve card layout to have consistent height - Add stretchy alignment to card grid for better responsiveness - Implement flexbox layout in cards to separate content and actions
1 parent 549becf commit 823897d

File tree

1 file changed

+42
-11
lines changed

1 file changed

+42
-11
lines changed

src/content/docs/index.mdx

Lines changed: 42 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: 'Flutter News App Toolkit'
2+
title: 'Your Flutter News App - Ready to Launch'
33
description: A complete, production-ready toolkit for building a cross-platform news application.
44
template: splash
55
hero:
6-
tagline: Your full-stack solution for launching a professional news platform. Includes a Flutter mobile app, a web-based dashboard, and a powerful Dart Frog backend.
6+
tagline: Includes a Flutter mobile app, a web-based dashboard, and a powerful Dart Frog backend.
77
image:
88
file: ../../assets/houston.webp
99
actions:
@@ -29,11 +29,22 @@ Welcome to the Flutter News App Full Source Code Toolkit. This is more than just
2929
display: 'grid',
3030
gridTemplateColumns: 'repeat(auto-fit, minmax(250px, 1fr))',
3131
gap: '1rem',
32+
alignItems: 'stretch',
3233
}}
3334
>
34-
<Card title="Mobile Client App" icon="phone" style={{ minHeight: '220px' }}>
35-
A feature-rich Flutter application for iOS and Android that delivers a
36-
beautiful, intuitive news reading experience to your users.
35+
<Card
36+
title="Mobile Client App"
37+
icon="phone"
38+
style={{
39+
display: 'flex',
40+
flexDirection: 'column',
41+
justifyContent: 'space-between',
42+
}}
43+
>
44+
<div>
45+
A feature-rich Flutter application for iOS and Android that delivers a
46+
beautiful, intuitive news reading experience to your users.
47+
</div>
3748
<div
3849
style={{
3950
display: 'flex',
@@ -56,9 +67,19 @@ Welcome to the Flutter News App Full Source Code Toolkit. This is more than just
5667
</a>
5768
</div>
5869
</Card>
59-
<Card title="Web Dashboard" icon="laptop" style={{ minHeight: '220px' }}>
60-
A comprehensive Flutter web app for administrators and publishers to manage
61-
content, configure app settings, and view key analytics.
70+
<Card
71+
title="Web Dashboard"
72+
icon="laptop"
73+
style={{
74+
display: 'flex',
75+
flexDirection: 'column',
76+
justifyContent: 'space-between',
77+
}}
78+
>
79+
<div>
80+
A comprehensive Flutter web app for administrators and publishers to manage
81+
content, configure app settings, and view key analytics.
82+
</div>
6283
<div
6384
style={{
6485
display: 'flex',
@@ -81,9 +102,19 @@ Welcome to the Flutter News App Full Source Code Toolkit. This is more than just
81102
</a>
82103
</div>
83104
</Card>
84-
<Card title="API Server" icon="cloud" style={{ minHeight: '220px' }}>
85-
A high-performance backend built with Dart Frog, providing robust APIs for
86-
authentication, data management, and remote configuration.
105+
<Card
106+
title="API Server"
107+
icon="cloud"
108+
style={{
109+
display: 'flex',
110+
flexDirection: 'column',
111+
justifyContent: 'space-between',
112+
}}
113+
>
114+
<div>
115+
A high-performance backend built with Dart Frog, providing robust APIs for
116+
authentication, data management, and remote configuration.
117+
</div>
87118
<div
88119
style={{
89120
display: 'flex',

0 commit comments

Comments
 (0)