├── .github ├── dependabot.yaml └── workflows │ └── node.yaml ├── .gitignore ├── .node-version ├── LICENSE ├── README.md ├── declarations.d.ts ├── gatsby-browser.ts ├── gatsby-config.ts ├── gatsby-node.ts ├── package.json ├── src ├── @chakra-ui │ └── gatsby-plugin │ │ └── theme.js ├── api │ └── cdn.ts ├── assets │ ├── app-icon.tsx │ ├── icon-round.png │ └── social-card-image.png ├── components │ └── analytics.tsx └── pages │ └── index.tsx └── tsconfig.json /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/.github/workflows/node.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | src/gatsby-types.d.ts 5 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/README.md -------------------------------------------------------------------------------- /declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/declarations.d.ts -------------------------------------------------------------------------------- /gatsby-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/gatsby-browser.ts -------------------------------------------------------------------------------- /gatsby-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/gatsby-config.ts -------------------------------------------------------------------------------- /gatsby-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/gatsby-node.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/package.json -------------------------------------------------------------------------------- /src/@chakra-ui/gatsby-plugin/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/@chakra-ui/gatsby-plugin/theme.js -------------------------------------------------------------------------------- /src/api/cdn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/api/cdn.ts -------------------------------------------------------------------------------- /src/assets/app-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/assets/app-icon.tsx -------------------------------------------------------------------------------- /src/assets/icon-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/assets/icon-round.png -------------------------------------------------------------------------------- /src/assets/social-card-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/assets/social-card-image.png -------------------------------------------------------------------------------- /src/components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/components/analytics.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trynoice/web-app-v0/HEAD/tsconfig.json --------------------------------------------------------------------------------