├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── fonts │ ├── Motiva-Sans-Bold.ttf │ └── Motiva-Sans-Light.ttf ├── img │ ├── icons │ │ ├── logo192.png │ │ └── logo512.png │ └── svg │ │ ├── developer.svg │ │ ├── github.svg │ │ ├── graphs.svg │ │ ├── linkedin.svg │ │ ├── logo.svg │ │ ├── medium.svg │ │ ├── notes.svg │ │ ├── product-launch.svg │ │ ├── scroll-top.svg │ │ ├── spain.svg │ │ ├── twitter.svg │ │ ├── united-states.svg │ │ └── waving.svg ├── index.html ├── manifest.json └── robots.txt ├── src ├── common │ ├── Button │ │ ├── index.tsx │ │ └── styles.ts │ ├── Container │ │ ├── index.tsx │ │ └── styles.ts │ ├── Input │ │ ├── index.tsx │ │ └── styles.ts │ ├── ScrollToTop │ │ ├── index.tsx │ │ └── styles.ts │ ├── SvgIcon │ │ └── index.tsx │ ├── TextArea │ │ ├── index.tsx │ │ └── styles.tsx │ ├── types.ts │ └── utils │ │ ├── useForm.tsx │ │ └── validationRules.ts ├── components │ ├── Block │ │ ├── index.tsx │ │ └── styles.ts │ ├── ContactForm │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── types.ts │ ├── ContentBlock │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── types.ts │ ├── Footer │ │ ├── index.tsx │ │ └── styles.ts │ ├── Header │ │ ├── index.tsx │ │ └── styles.ts │ └── MiddleBlock │ │ ├── index.tsx │ │ └── styles.tsx ├── content │ ├── AboutContent.json │ ├── ContactContent.json │ ├── IntroContent.json │ ├── MiddleBlockContent.json │ ├── MissionContent.json │ └── ProductContent.json ├── index.tsx ├── locales │ ├── en │ │ └── translation.json │ └── es │ │ └── translation.json ├── pages │ └── Home │ │ └── index.tsx ├── react-app-env.d.ts ├── router │ ├── config.ts │ └── index.tsx ├── styles │ └── styles.ts └── translation.ts ├── template.json └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/Motiva-Sans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/fonts/Motiva-Sans-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Motiva-Sans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/fonts/Motiva-Sans-Light.ttf -------------------------------------------------------------------------------- /public/img/icons/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/icons/logo192.png -------------------------------------------------------------------------------- /public/img/icons/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/icons/logo512.png -------------------------------------------------------------------------------- /public/img/svg/developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/developer.svg -------------------------------------------------------------------------------- /public/img/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/github.svg -------------------------------------------------------------------------------- /public/img/svg/graphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/graphs.svg -------------------------------------------------------------------------------- /public/img/svg/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/linkedin.svg -------------------------------------------------------------------------------- /public/img/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/logo.svg -------------------------------------------------------------------------------- /public/img/svg/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/medium.svg -------------------------------------------------------------------------------- /public/img/svg/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/notes.svg -------------------------------------------------------------------------------- /public/img/svg/product-launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/product-launch.svg -------------------------------------------------------------------------------- /public/img/svg/scroll-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/scroll-top.svg -------------------------------------------------------------------------------- /public/img/svg/spain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/spain.svg -------------------------------------------------------------------------------- /public/img/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/twitter.svg -------------------------------------------------------------------------------- /public/img/svg/united-states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/united-states.svg -------------------------------------------------------------------------------- /public/img/svg/waving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/img/svg/waving.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/common/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/Button/index.tsx -------------------------------------------------------------------------------- /src/common/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/Button/styles.ts -------------------------------------------------------------------------------- /src/common/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/Container/index.tsx -------------------------------------------------------------------------------- /src/common/Container/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/Container/styles.ts -------------------------------------------------------------------------------- /src/common/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/Input/index.tsx -------------------------------------------------------------------------------- /src/common/Input/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/Input/styles.ts -------------------------------------------------------------------------------- /src/common/ScrollToTop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/ScrollToTop/index.tsx -------------------------------------------------------------------------------- /src/common/ScrollToTop/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/ScrollToTop/styles.ts -------------------------------------------------------------------------------- /src/common/SvgIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/SvgIcon/index.tsx -------------------------------------------------------------------------------- /src/common/TextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/TextArea/index.tsx -------------------------------------------------------------------------------- /src/common/TextArea/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/TextArea/styles.tsx -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/common/utils/useForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/utils/useForm.tsx -------------------------------------------------------------------------------- /src/common/utils/validationRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/common/utils/validationRules.ts -------------------------------------------------------------------------------- /src/components/Block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/Block/index.tsx -------------------------------------------------------------------------------- /src/components/Block/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/Block/styles.ts -------------------------------------------------------------------------------- /src/components/ContactForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/ContactForm/index.tsx -------------------------------------------------------------------------------- /src/components/ContactForm/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/ContactForm/styles.ts -------------------------------------------------------------------------------- /src/components/ContactForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/ContactForm/types.ts -------------------------------------------------------------------------------- /src/components/ContentBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/ContentBlock/index.tsx -------------------------------------------------------------------------------- /src/components/ContentBlock/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/ContentBlock/styles.ts -------------------------------------------------------------------------------- /src/components/ContentBlock/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/ContentBlock/types.ts -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/Footer/styles.ts -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/Header/styles.ts -------------------------------------------------------------------------------- /src/components/MiddleBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/MiddleBlock/index.tsx -------------------------------------------------------------------------------- /src/components/MiddleBlock/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/components/MiddleBlock/styles.tsx -------------------------------------------------------------------------------- /src/content/AboutContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/content/AboutContent.json -------------------------------------------------------------------------------- /src/content/ContactContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/content/ContactContent.json -------------------------------------------------------------------------------- /src/content/IntroContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/content/IntroContent.json -------------------------------------------------------------------------------- /src/content/MiddleBlockContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/content/MiddleBlockContent.json -------------------------------------------------------------------------------- /src/content/MissionContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/content/MissionContent.json -------------------------------------------------------------------------------- /src/content/ProductContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/content/ProductContent.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/locales/en/translation.json -------------------------------------------------------------------------------- /src/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/locales/es/translation.json -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/router/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/router/config.ts -------------------------------------------------------------------------------- /src/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/router/index.tsx -------------------------------------------------------------------------------- /src/styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/styles/styles.ts -------------------------------------------------------------------------------- /src/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/src/translation.ts -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/template.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adrinlol/landy-react-template/HEAD/tsconfig.json --------------------------------------------------------------------------------