Skip to content

Commit 873a3fe

Browse files
committed
update content for home page
1 parent e675bce commit 873a3fe

File tree

2 files changed

+66
-12
lines changed

2 files changed

+66
-12
lines changed

docs/index.md

Lines changed: 55 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,32 +31,56 @@ FlutterFlow is a visual development environment that lets you build mobile, web,
3131
icon="🚀"
3232
title="Build your first app"
3333
description="Get started with FlutterFlow by building your first FlutterFlow app step-by-step."
34-
pagePath="/quickstart"
34+
pagePath="/quickstart"
35+
isLarge={true}
3536
/>
37+
<InfoCard
38+
icon="🗺️"
39+
title="App Development Roadmap"
40+
description="Learn the three essential layers of app development: UI Layer, Logic Layer, and Data Layer for building FlutterFlow applications."
41+
pagePath="/roadmap"
42+
isLarge={true}
43+
/>
44+
3645
</InfoCards>
3746

3847
<p></p>
3948

40-
### Explore Other Resources
4149

42-
Discover additional tools, tutorials, and references to enhance your FlutterFlow development experience:
50+
<p></p>
51+
52+
### FlutterFlow Tour
53+
4354
<InfoCards>
44-
<InfoCard title="System Requirements" description="Ensure you meet system requirements and grasp technical concepts for smooth building in FlutterFlow." pagePath="/before-you-begin/setup-flutterflow" />
45-
<InfoCard title="Explore FlutterFlow" description="Dive into the building blocks of the platform: projects, widgets, functions and more." pagePath="/resources"/>
46-
<InfoCard title="App Development Roadmap" description="Learn the three essential layers of app development: UI Layer, Logic Layer, and Data Layer for building FlutterFlow applications." pagePath="/roadmap"/>
47-
<InfoCard title="What's New in FlutterFlow" description="Updates, features, and the latest enhancements in FlutterFlow." pagePath="https://community.flutterflow.io/c/whats-new-in-flutterflow"/>
4855

49-
</InfoCards>
56+
<InfoCard
57+
icon="🏗️"
58+
title="FlutterFlow Builder"
59+
description="Explore the FlutterFlow Builder interface, learn about the dashboard, widgets panel, and how to navigate the visual development environment."
60+
pagePath="/flutterflow-ui/dashboard"
61+
isLarge={true}
62+
/>
5063

64+
<InfoCard
65+
icon="🔍"
66+
title="Building Blocks"
67+
description="Dive into the building blocks of the platform: projects, widgets, functions and more."
68+
pagePath="/resources"
69+
isLarge = {true}
70+
/>
5171

5272

73+
</InfoCards>
5374

5475
<p></p>
5576

56-
### FlutterFlow Tour
57-
5877
<div class="video-container"><iframe src="https://www.youtube.com/embed/GpXjU-ieAKU?si=moIEUUGry24CdSJN" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
5978

79+
80+
81+
82+
83+
6084
### Best Practices
6185

6286
Essential guidelines and recommendations for building robust FlutterFlow applications. Discover security best practices and performance optimization techniques to ensure your apps are production-ready, scalable, and maintainable.
@@ -104,12 +128,32 @@ Learn advanced techniques and strategies to scale your FlutterFlow applications
104128

105129
</InfoCards>
106130

131+
### Additional Tools
132+
133+
Discover additional tools and references to enhance your FlutterFlow development experience:
134+
<InfoCards>
135+
<InfoCard
136+
icon="⚙️"
137+
title="System Requirements"
138+
description="Ensure you meet system requirements required to smoothly run FlutterFlow application on the web & desktop."
139+
pagePath="/before-you-begin/setup-flutterflow"
140+
/>
141+
<InfoCard
142+
icon="🆕"
143+
title="What's New in FlutterFlow"
144+
description="Follow latest updates, features, and the latest enhancements in FlutterFlow."
145+
pagePath="https://community.flutterflow.io/c/whats-new-in-flutterflow"
146+
/>
147+
148+
</InfoCards>
149+
107150
## Still Have Problems?
108151

109152
If you're still experiencing issues or need additional help, here are some resources to get you back on track:
110153

111154
- **[Submit Bug Report](/misc/submit-bug-report)** - Report bugs or issues you've encountered
112155
- **[Community Forum](https://community.flutterflow.io)** - Ask questions and get help from the community
113156
- **[Reddit Community](https://www.reddit.com/r/FlutterFlow/)** - Join discussions on Reddit
114-
- **[GitHub Issues](https://github.com/FlutterFlow/flutterflow-documentation/issues)** - Report documentation issues
157+
- **[Documentation Bug](https://github.com/FlutterFlow/flutterflow-documentation/issues)** - Report documentation issues
158+
- **[Contribute to Documentation](https://github.com/FlutterFlow/flutterflow-documentation?tab=readme-ov-file#how-to-contribute)** - Contribution guidelines for contributing to the FlutterFlow documentation site.
115159
- **[FlutterFlow Support](mailto:[email protected])** - Get direct support from the FlutterFlow support team.

src/components/InfoCard/index.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
import React from 'react';
22
import styles from './index.module.css';
33

4-
const InfoCard = ({ icon, title, description, pagePath, isLarge = false }) => {
4+
interface InfoCardProps {
5+
icon?: string;
6+
title: string;
7+
description: string;
8+
pagePath: string;
9+
isLarge?: boolean;
10+
}
11+
12+
const InfoCard = ({ icon, title, description, pagePath, isLarge = false }: InfoCardProps) => {
13+
console.log('InfoCard:', title, 'isLarge =', isLarge);
14+
515
return (
616
<a href={pagePath} className={styles.infoCardLink}>
717
<div className={`${styles.infoCard} ${isLarge ? styles.largeCard : ''}`}>

0 commit comments

Comments
 (0)