├── .gitignore ├── README.md ├── config-overrides.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── Home ├── Banner1.jsx ├── Content0.jsx ├── Content3.jsx ├── Content5.jsx ├── Feature5.jsx ├── Footer1.jsx ├── Nav3.jsx ├── data.source.js ├── documentation.md ├── index.jsx ├── less │ ├── antMotionStyle.less │ ├── banner1.less │ ├── common.less │ ├── content.less │ ├── content0.less │ ├── content3.less │ ├── content5.less │ ├── custom.less │ ├── edit.less │ ├── feature5.less │ ├── footer1.less │ └── nav3.less └── utils.js ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/config-overrides.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Home/Banner1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Banner1.jsx -------------------------------------------------------------------------------- /src/Home/Content0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Content0.jsx -------------------------------------------------------------------------------- /src/Home/Content3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Content3.jsx -------------------------------------------------------------------------------- /src/Home/Content5.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Content5.jsx -------------------------------------------------------------------------------- /src/Home/Feature5.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Feature5.jsx -------------------------------------------------------------------------------- /src/Home/Footer1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Footer1.jsx -------------------------------------------------------------------------------- /src/Home/Nav3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/Nav3.jsx -------------------------------------------------------------------------------- /src/Home/data.source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/data.source.js -------------------------------------------------------------------------------- /src/Home/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/documentation.md -------------------------------------------------------------------------------- /src/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/index.jsx -------------------------------------------------------------------------------- /src/Home/less/antMotionStyle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/antMotionStyle.less -------------------------------------------------------------------------------- /src/Home/less/banner1.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/banner1.less -------------------------------------------------------------------------------- /src/Home/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/common.less -------------------------------------------------------------------------------- /src/Home/less/content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/content.less -------------------------------------------------------------------------------- /src/Home/less/content0.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/content0.less -------------------------------------------------------------------------------- /src/Home/less/content3.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/content3.less -------------------------------------------------------------------------------- /src/Home/less/content5.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/content5.less -------------------------------------------------------------------------------- /src/Home/less/custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/custom.less -------------------------------------------------------------------------------- /src/Home/less/edit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/edit.less -------------------------------------------------------------------------------- /src/Home/less/feature5.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/feature5.less -------------------------------------------------------------------------------- /src/Home/less/footer1.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/footer1.less -------------------------------------------------------------------------------- /src/Home/less/nav3.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/less/nav3.less -------------------------------------------------------------------------------- /src/Home/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/Home/utils.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-motion/landing-create-react-app-example/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------