├── .gitignore ├── LICENSE ├── README.md ├── gatsby-config.js ├── package.json ├── src ├── common │ ├── Button │ │ ├── index.js │ │ └── styles.js │ ├── Container │ │ ├── index.js │ │ └── styles.js │ ├── Input │ │ ├── index.js │ │ └── styles.js │ ├── ScrollToTop │ │ ├── index.js │ │ └── styles.js │ ├── SvgIcon │ │ └── index.js │ └── TextArea │ │ ├── index.js │ │ └── styles.js ├── components │ ├── Block │ │ ├── index.js │ │ └── styles.js │ ├── ContactForm │ │ ├── index.js │ │ ├── styles.js │ │ ├── useForm.js │ │ └── validationRules.js │ ├── ContentBlock │ │ ├── LeftContentBlock │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── RightContentBlock │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── index.js │ ├── Footer │ │ ├── index.js │ │ └── styles.js │ ├── Header │ │ ├── Head.js │ │ ├── index.js │ │ └── styles.js │ ├── Home │ │ └── index.js │ ├── Loading │ │ ├── index.js │ │ └── styles.js │ └── MiddleBlock │ │ ├── index.js │ │ └── styles.js ├── content │ ├── AboutContent.json │ ├── ContactContent.json │ ├── IntroContent.json │ ├── MiddleBlockContent.json │ ├── MissionContent.json │ └── ProductContent.json ├── globalStyles.js ├── locales │ ├── en │ │ └── translation.json │ └── es │ │ └── translation.json ├── pages │ ├── 404.js │ └── index.js ├── router │ └── index.js └── translation.js └── static ├── antd.css.map ├── favicon.ico └── img ├── icons ├── logo192.png └── logo512.png └── svg ├── developer.svg ├── github.svg ├── graphs.svg ├── instagram.svg ├── linkedin.svg ├── logo.svg ├── medium.svg ├── notes.svg ├── product-launch.svg ├── scroll-top.svg ├── twitter.svg └── waving.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/common/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/Button/index.js -------------------------------------------------------------------------------- /src/common/Button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/Button/styles.js -------------------------------------------------------------------------------- /src/common/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/Container/index.js -------------------------------------------------------------------------------- /src/common/Container/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/Container/styles.js -------------------------------------------------------------------------------- /src/common/Input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/Input/index.js -------------------------------------------------------------------------------- /src/common/Input/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/Input/styles.js -------------------------------------------------------------------------------- /src/common/ScrollToTop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/ScrollToTop/index.js -------------------------------------------------------------------------------- /src/common/ScrollToTop/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/ScrollToTop/styles.js -------------------------------------------------------------------------------- /src/common/SvgIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/SvgIcon/index.js -------------------------------------------------------------------------------- /src/common/TextArea/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/TextArea/index.js -------------------------------------------------------------------------------- /src/common/TextArea/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/common/TextArea/styles.js -------------------------------------------------------------------------------- /src/components/Block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Block/index.js -------------------------------------------------------------------------------- /src/components/Block/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Block/styles.js -------------------------------------------------------------------------------- /src/components/ContactForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContactForm/index.js -------------------------------------------------------------------------------- /src/components/ContactForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContactForm/styles.js -------------------------------------------------------------------------------- /src/components/ContactForm/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContactForm/useForm.js -------------------------------------------------------------------------------- /src/components/ContactForm/validationRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContactForm/validationRules.js -------------------------------------------------------------------------------- /src/components/ContentBlock/LeftContentBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContentBlock/LeftContentBlock/index.js -------------------------------------------------------------------------------- /src/components/ContentBlock/LeftContentBlock/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContentBlock/LeftContentBlock/styles.js -------------------------------------------------------------------------------- /src/components/ContentBlock/RightContentBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContentBlock/RightContentBlock/index.js -------------------------------------------------------------------------------- /src/components/ContentBlock/RightContentBlock/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContentBlock/RightContentBlock/styles.js -------------------------------------------------------------------------------- /src/components/ContentBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/ContentBlock/index.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Footer/styles.js -------------------------------------------------------------------------------- /src/components/Header/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Header/Head.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Header/styles.js -------------------------------------------------------------------------------- /src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Home/index.js -------------------------------------------------------------------------------- /src/components/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Loading/index.js -------------------------------------------------------------------------------- /src/components/Loading/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/Loading/styles.js -------------------------------------------------------------------------------- /src/components/MiddleBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/MiddleBlock/index.js -------------------------------------------------------------------------------- /src/components/MiddleBlock/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/components/MiddleBlock/styles.js -------------------------------------------------------------------------------- /src/content/AboutContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/content/AboutContent.json -------------------------------------------------------------------------------- /src/content/ContactContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/content/ContactContent.json -------------------------------------------------------------------------------- /src/content/IntroContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/content/IntroContent.json -------------------------------------------------------------------------------- /src/content/MiddleBlockContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/content/MiddleBlockContent.json -------------------------------------------------------------------------------- /src/content/MissionContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/content/MissionContent.json -------------------------------------------------------------------------------- /src/content/ProductContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/content/ProductContent.json -------------------------------------------------------------------------------- /src/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/globalStyles.js -------------------------------------------------------------------------------- /src/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/locales/en/translation.json -------------------------------------------------------------------------------- /src/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/locales/es/translation.json -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/src/translation.js -------------------------------------------------------------------------------- /static/antd.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/antd.css.map -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/img/icons/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/icons/logo192.png -------------------------------------------------------------------------------- /static/img/icons/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/icons/logo512.png -------------------------------------------------------------------------------- /static/img/svg/developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/developer.svg -------------------------------------------------------------------------------- /static/img/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/github.svg -------------------------------------------------------------------------------- /static/img/svg/graphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/graphs.svg -------------------------------------------------------------------------------- /static/img/svg/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/instagram.svg -------------------------------------------------------------------------------- /static/img/svg/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/linkedin.svg -------------------------------------------------------------------------------- /static/img/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/logo.svg -------------------------------------------------------------------------------- /static/img/svg/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/medium.svg -------------------------------------------------------------------------------- /static/img/svg/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/notes.svg -------------------------------------------------------------------------------- /static/img/svg/product-launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/product-launch.svg -------------------------------------------------------------------------------- /static/img/svg/scroll-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/scroll-top.svg -------------------------------------------------------------------------------- /static/img/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/twitter.svg -------------------------------------------------------------------------------- /static/img/svg/waving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshan333/landy-gatsby-starter/HEAD/static/img/svg/waving.svg --------------------------------------------------------------------------------