|
1 | 1 | import { getChildPageNodes } from '@/utils/getChildPageNodes'; |
2 | 2 | import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; |
| 3 | +import { Card } from '@aws-amplify/ui-react'; |
3 | 4 |
|
4 | 5 | export const meta = { |
5 | 6 | title: 'How Amplify works', |
@@ -27,10 +28,38 @@ export function getStaticProps(context) { |
27 | 28 | const childPageNodes = getChildPageNodes(meta.route); |
28 | 29 | return { |
29 | 30 | props: { |
| 31 | + platform: context.params.platform, |
30 | 32 | meta, |
31 | 33 | childPageNodes |
32 | 34 | } |
33 | 35 | }; |
34 | 36 | } |
35 | 37 |
|
| 38 | +AWS Amplify is a complete toolkit for building fullstack apps. It consists of four independent pillars that can be used together or separately: |
| 39 | + |
| 40 | +<Columns columns={2}> |
| 41 | + <Card variation="outlined"> |
| 42 | + **[Backend](/[platform]/build-a-backend/)** |
| 43 | + |
| 44 | + Define cloud resources like authentication, data, storage, and functions using TypeScript. Amplify provisions and manages the AWS infrastructure for you. |
| 45 | + </Card> |
| 46 | + <Card variation="outlined"> |
| 47 | + **[Frontend Libraries](/[platform]/frontend/)** |
| 48 | + |
| 49 | + Libraries that connect your web or mobile app to backend services. Available for JavaScript, React, React Native, Swift, Android, and Flutter. |
| 50 | + </Card> |
| 51 | + <Card variation="outlined"> |
| 52 | + **[UI Libraries](/[platform]/build-ui/)** |
| 53 | + |
| 54 | + Pre-built, themeable UI components like Authenticator, Storage Manager, and AI conversation interfaces. Drop-in components that handle complex workflows. |
| 55 | + </Card> |
| 56 | + <Card variation="outlined"> |
| 57 | + **[Hosting](/[platform]/deploy-and-host/)** |
| 58 | + |
| 59 | + Deploy and host fullstack web apps with Git-based CI/CD, branch previews, custom domains, and server-side rendering support. |
| 60 | + </Card> |
| 61 | +</Columns> |
| 62 | + |
| 63 | +Each pillar works independently — use just the frontend libraries with your own backend, or just hosting for a static site. Together, they provide an integrated fullstack development experience. |
| 64 | + |
36 | 65 | <Overview childPageNodes={props.childPageNodes} /> |
0 commit comments