├── .babelrc ├── .editorconfig ├── .env.production ├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .jest └── setup.js ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── jest.config.js ├── next-env.d.ts ├── next.config.js ├── now.json ├── package.json ├── public ├── fonts │ ├── poppins-v9-latin-regular.woff │ └── poppins-v9-latin-regular.woff2 ├── img │ ├── cover.png │ ├── hero-illustration.svg │ ├── icon-192.png │ ├── icon-512.png │ ├── logo.svg │ └── tech │ │ ├── apollo.svg │ │ ├── cypress.svg │ │ ├── graphql.svg │ │ ├── jest.svg │ │ ├── nextjs.svg │ │ ├── react.svg │ │ ├── rtl.svg │ │ ├── storybook.svg │ │ ├── strapi.svg │ │ └── typescript.svg ├── robots.txt ├── sitemap.xml └── sw.js ├── src ├── components │ ├── Analytics │ │ └── index.tsx │ ├── Button │ │ ├── index.tsx │ │ └── styles.ts │ ├── CardModule │ │ ├── index.tsx │ │ └── styles.ts │ ├── Container │ │ ├── index.tsx │ │ └── styles.ts │ ├── Footer │ │ ├── index.tsx │ │ └── styles.ts │ ├── Heading │ │ ├── index.tsx │ │ └── styles.ts │ ├── JsonSchema │ │ └── index.tsx │ ├── Logo │ │ ├── index.tsx │ │ └── styles.ts │ ├── PricingBox │ │ ├── index.tsx │ │ └── styles.ts │ ├── ProfileCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── ReviewCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionAboutProject │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionAboutUs │ │ ├── content.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionAgenda │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionConcepts │ │ ├── content.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionFaq │ │ ├── content.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionHero │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionModules │ │ ├── content.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionReviews │ │ ├── content.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── SectionTech │ │ ├── content.ts │ │ ├── index.tsx │ │ └── styles.ts │ └── ShareButtons │ │ ├── index.tsx │ │ └── styles.ts ├── images │ ├── authors │ │ ├── guilherme.png │ │ ├── marcos.png │ │ └── willian.png │ ├── project.png │ └── reviews │ │ ├── alane-ribeiro.jpg │ │ ├── alexandre-teixeira.jpg │ │ ├── ariel-dalton.jpg │ │ ├── daniel-oliveira.jpg │ │ ├── douglas-lopes.jpg │ │ ├── henrique-albert.jpg │ │ ├── jorge-ramos.jpg │ │ ├── karoline-medeiros.jpg │ │ ├── lianker-lopes.jpg │ │ ├── luiz-claudio-silva.jpg │ │ ├── mileine-souto.jpg │ │ └── reviewer.jpg ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx ├── styles │ ├── global.styles.ts │ └── theme.ts └── utils │ └── ga.ts ├── styled-components.d.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_GA_TRACKING=G-QTX2M4HXK7 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.jest/setup.js: -------------------------------------------------------------------------------- 1 | import 'jest-styled-components' 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/jest.config.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/next.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/package.json -------------------------------------------------------------------------------- /public/fonts/poppins-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/fonts/poppins-v9-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/poppins-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/fonts/poppins-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /public/img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/cover.png -------------------------------------------------------------------------------- /public/img/hero-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/hero-illustration.svg -------------------------------------------------------------------------------- /public/img/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/icon-192.png -------------------------------------------------------------------------------- /public/img/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/icon-512.png -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/tech/apollo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/apollo.svg -------------------------------------------------------------------------------- /public/img/tech/cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/cypress.svg -------------------------------------------------------------------------------- /public/img/tech/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/graphql.svg -------------------------------------------------------------------------------- /public/img/tech/jest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/jest.svg -------------------------------------------------------------------------------- /public/img/tech/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/nextjs.svg -------------------------------------------------------------------------------- /public/img/tech/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/react.svg -------------------------------------------------------------------------------- /public/img/tech/rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/rtl.svg -------------------------------------------------------------------------------- /public/img/tech/storybook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/storybook.svg -------------------------------------------------------------------------------- /public/img/tech/strapi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/strapi.svg -------------------------------------------------------------------------------- /public/img/tech/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/img/tech/typescript.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/public/sw.js -------------------------------------------------------------------------------- /src/components/Analytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Analytics/index.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Button/styles.ts -------------------------------------------------------------------------------- /src/components/CardModule/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/CardModule/index.tsx -------------------------------------------------------------------------------- /src/components/CardModule/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/CardModule/styles.ts -------------------------------------------------------------------------------- /src/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Container/index.tsx -------------------------------------------------------------------------------- /src/components/Container/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Container/styles.ts -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Footer/styles.ts -------------------------------------------------------------------------------- /src/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Heading/index.tsx -------------------------------------------------------------------------------- /src/components/Heading/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Heading/styles.ts -------------------------------------------------------------------------------- /src/components/JsonSchema/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/JsonSchema/index.tsx -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Logo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/Logo/styles.ts -------------------------------------------------------------------------------- /src/components/PricingBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/PricingBox/index.tsx -------------------------------------------------------------------------------- /src/components/PricingBox/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/PricingBox/styles.ts -------------------------------------------------------------------------------- /src/components/ProfileCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/ProfileCard/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/ProfileCard/styles.ts -------------------------------------------------------------------------------- /src/components/ReviewCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/ReviewCard/index.tsx -------------------------------------------------------------------------------- /src/components/ReviewCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/ReviewCard/styles.ts -------------------------------------------------------------------------------- /src/components/SectionAboutProject/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAboutProject/index.tsx -------------------------------------------------------------------------------- /src/components/SectionAboutProject/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAboutProject/styles.ts -------------------------------------------------------------------------------- /src/components/SectionAboutUs/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAboutUs/content.ts -------------------------------------------------------------------------------- /src/components/SectionAboutUs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAboutUs/index.tsx -------------------------------------------------------------------------------- /src/components/SectionAboutUs/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAboutUs/styles.ts -------------------------------------------------------------------------------- /src/components/SectionAgenda/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAgenda/index.tsx -------------------------------------------------------------------------------- /src/components/SectionAgenda/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionAgenda/styles.ts -------------------------------------------------------------------------------- /src/components/SectionConcepts/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionConcepts/content.ts -------------------------------------------------------------------------------- /src/components/SectionConcepts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionConcepts/index.tsx -------------------------------------------------------------------------------- /src/components/SectionConcepts/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionConcepts/styles.ts -------------------------------------------------------------------------------- /src/components/SectionFaq/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionFaq/content.ts -------------------------------------------------------------------------------- /src/components/SectionFaq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionFaq/index.tsx -------------------------------------------------------------------------------- /src/components/SectionFaq/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionFaq/styles.ts -------------------------------------------------------------------------------- /src/components/SectionHero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionHero/index.tsx -------------------------------------------------------------------------------- /src/components/SectionHero/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionHero/styles.ts -------------------------------------------------------------------------------- /src/components/SectionModules/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionModules/content.ts -------------------------------------------------------------------------------- /src/components/SectionModules/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionModules/index.tsx -------------------------------------------------------------------------------- /src/components/SectionModules/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionModules/styles.ts -------------------------------------------------------------------------------- /src/components/SectionReviews/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionReviews/content.ts -------------------------------------------------------------------------------- /src/components/SectionReviews/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionReviews/index.tsx -------------------------------------------------------------------------------- /src/components/SectionReviews/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionReviews/styles.ts -------------------------------------------------------------------------------- /src/components/SectionTech/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionTech/content.ts -------------------------------------------------------------------------------- /src/components/SectionTech/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionTech/index.tsx -------------------------------------------------------------------------------- /src/components/SectionTech/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/SectionTech/styles.ts -------------------------------------------------------------------------------- /src/components/ShareButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/ShareButtons/index.tsx -------------------------------------------------------------------------------- /src/components/ShareButtons/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/components/ShareButtons/styles.ts -------------------------------------------------------------------------------- /src/images/authors/guilherme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/authors/guilherme.png -------------------------------------------------------------------------------- /src/images/authors/marcos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/authors/marcos.png -------------------------------------------------------------------------------- /src/images/authors/willian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/authors/willian.png -------------------------------------------------------------------------------- /src/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/project.png -------------------------------------------------------------------------------- /src/images/reviews/alane-ribeiro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/alane-ribeiro.jpg -------------------------------------------------------------------------------- /src/images/reviews/alexandre-teixeira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/alexandre-teixeira.jpg -------------------------------------------------------------------------------- /src/images/reviews/ariel-dalton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/ariel-dalton.jpg -------------------------------------------------------------------------------- /src/images/reviews/daniel-oliveira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/daniel-oliveira.jpg -------------------------------------------------------------------------------- /src/images/reviews/douglas-lopes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/douglas-lopes.jpg -------------------------------------------------------------------------------- /src/images/reviews/henrique-albert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/henrique-albert.jpg -------------------------------------------------------------------------------- /src/images/reviews/jorge-ramos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/jorge-ramos.jpg -------------------------------------------------------------------------------- /src/images/reviews/karoline-medeiros.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/karoline-medeiros.jpg -------------------------------------------------------------------------------- /src/images/reviews/lianker-lopes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/lianker-lopes.jpg -------------------------------------------------------------------------------- /src/images/reviews/luiz-claudio-silva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/luiz-claudio-silva.jpg -------------------------------------------------------------------------------- /src/images/reviews/mileine-souto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/mileine-souto.jpg -------------------------------------------------------------------------------- /src/images/reviews/reviewer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/images/reviews/reviewer.jpg -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/global.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/styles/global.styles.ts -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /src/utils/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/src/utils/ga.ts -------------------------------------------------------------------------------- /styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/styled-components.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Avancado/landing-page/HEAD/yarn.lock --------------------------------------------------------------------------------