import { Grid } from 'theme-ui'; import Head from 'next/head'; import { useEffect } from 'react'; import Hero from '../components/Hero'; import LandingHeroCTA from '../components/LandingHeroCTA'; import { Container } from '../components/Container'; import { Card, CardDetail, CardGraphic } from '../components/Card'; import FeaturesGrid from '../components/FeaturesGrid'; import LinkBanner from '../components/LinkBanner'; import Footer from '../components/Footer'; import SecondaryNav from '../components/SecondaryNav'; import { trackPageVisit } from '../utils/track'; import { NavMenuItem, GlobalNav } from '../components/GlobalNav'; import { LEFT_NAV_LINKS, RIGHT_NAV_LINKS, SOCIAL_LINKS } from '../utils/globalnav'; import React from 'react'; const meta = { title: 'Amplify Docs', description: 'Amplify documentation - Learn how to use Amplify to develop and deploy cloud-powered mobile and web apps.', url: 'https://docs.amplify.aws/' }; const Page = () => { useEffect(() => { trackPageVisit(); }, []); return ( <>
Learn how to use Amplify to develop and deploy cloud-powered mobile and web apps
Connect app to new or existing AWS services (Cognito, S3, and more).
Visual development environment to accelerate fullstack development.
Configure an app backend with a guided CLI workflow.
Fully managed web hosting with fullstack CI/CD.