├── .babelrc ├── .github └── workflows │ └── crossplatform-test.yml ├── .gitignore ├── LICENSE ├── README.md ├── api └── index.go ├── components └── HelloWorld.tsx ├── css └── index.scss ├── next-env.d.ts ├── next.config.js ├── now.json ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── _error.tsx └── index.tsx ├── static └── manifest.json ├── tests └── components │ ├── HelloWorld.test.tsx │ └── __snapshots__ │ └── HelloWorld.test.tsx.snap ├── tsconfig.json ├── tsconfig.test.json └── utils └── analytics.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/crossplatform-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/.github/workflows/crossplatform-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/README.md -------------------------------------------------------------------------------- /api/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/api/index.go -------------------------------------------------------------------------------- /components/HelloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/components/HelloWorld.tsx -------------------------------------------------------------------------------- /css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/css/index.scss -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/next.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/pages/_error.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/static/manifest.json -------------------------------------------------------------------------------- /tests/components/HelloWorld.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/tests/components/HelloWorld.test.tsx -------------------------------------------------------------------------------- /tests/components/__snapshots__/HelloWorld.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/tests/components/__snapshots__/HelloWorld.test.tsx.snap -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /utils/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alepacheco/landing-template/HEAD/utils/analytics.ts --------------------------------------------------------------------------------