├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── next-env.d.ts ├── package.json ├── public └── favicon.png ├── src ├── atom.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx ├── styles │ └── global.css └── utils │ └── gtag.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/public/favicon.png -------------------------------------------------------------------------------- /src/atom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/src/atom.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- 1 | body { 2 | overflow-x: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/utils/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/src/utils/gtag.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhicks/themera/HEAD/tsconfig.json --------------------------------------------------------------------------------