├── .adr-dir ├── .babelrc.json ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── renovate.json ├── stale.yml └── workflows │ ├── cache.yml │ ├── deploy.yml │ ├── ephemeralDestroy.yml │ ├── storybook.yml │ └── verify.yml ├── .gitignore ├── .npmrc ├── .releaserc.json ├── .storybook ├── main.ts ├── manager.ts ├── preview.tsx ├── storybook.css ├── theme.ts └── tsconfig.json ├── .stylelintrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── app.arc ├── cdk.json ├── deployment ├── cdk.ts ├── githubActionSupport.ts ├── githubEnv.ts ├── lib │ └── Constructs │ │ ├── LambdaDeployment.ts │ │ ├── RemixApiGateway.ts │ │ ├── RemixCDN.ts │ │ ├── RemixDeployment.ts │ │ └── StaticDeployment.ts └── stacks │ ├── EphemeralStack.ts │ ├── ProductionStack.test.ts │ └── ProductionStack.ts ├── docs ├── adr │ ├── .adr-sequence.lock │ ├── 0001-record-architecture-decisions.md │ ├── 0002-abandoning-the-stack-notion.md │ ├── 0003-using-split-instead-of-launch-darkly.md │ ├── 0004-not-using-streaming.md │ ├── 0005-bundling-environment-variables.md │ ├── 0006-stack-it-is.md │ ├── 0007-arc-takes-a-backseat.md │ ├── 0008-use-aws-cdk-for-deployments.md │ ├── 0009-no-more-need-to-bundle-environment-variables.md │ ├── 0010-authentication-is-done-by-auth0.md │ ├── 0011-suppressing-hydration-warnings-on-scripts.md │ ├── 0012-session-cookie-same-site-none.md │ ├── 0013-custom-cookie-consent.md │ ├── 0014-removing-remix-eslint.md │ └── decisions.md └── images │ ├── cookieyes.png │ ├── gihtub-branch-protection.png │ ├── github-deployment-details.png │ ├── github-run-workflow.png │ ├── hydration.png │ ├── renovate-github-app-choose-repos.png │ ├── renovate-github-app-install.png │ ├── senntry-sidebar.png │ ├── sentry-settings.png │ └── sentry-sidebar.png ├── lefthook.yml ├── package.json ├── playwright.config.ts ├── playwright └── e2e │ ├── cookieconsent.spec.ts │ ├── example.spec.ts │ └── example.spec.ts-snapshots │ ├── has-title-1-Google-Chrome-linux.png │ ├── has-title-1-Microsoft-Edge-linux.png │ ├── has-title-1-Mobile-Chrome-linux.png │ ├── has-title-1-Mobile-Safari-linux.png │ ├── has-title-1-chromium-linux.png │ ├── has-title-1-firefox-linux.png │ └── has-title-1-webkit-linux.png ├── postcss.config.js ├── preferences.arc ├── public ├── favicon.ico └── locales │ └── en │ └── translation.json ├── remix.config.js ├── remix.init ├── gitignore ├── index.ts └── package.json ├── server.js ├── server ├── config.arc ├── metafile.js.json ├── metafile.server.json └── version.txt ├── socket.yml ├── src ├── __snapshots__ │ ├── entry.client.test.tsx.snap │ ├── entry.server.test.ts.snap │ └── root.test.tsx.snap ├── atoms │ ├── Icons │ │ ├── __snapshots__ │ │ │ └── cookie.test.tsx.snap │ │ ├── cookie.test.tsx │ │ └── cookie.tsx │ └── Toggle │ │ ├── Toggle.stories.tsx │ │ ├── index.test.tsx │ │ └── index.tsx ├── auth.server.test.ts ├── auth.server.ts ├── components │ ├── ColorModeSwitcher │ │ ├── ColorModeSwitcher.stories.tsx │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── clientUtils.test.ts │ │ ├── clientUtils.ts │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Colors.mdx │ ├── CookieConsent │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── CookieYes │ │ ├── CookieYes.mdx │ │ ├── CookieYes.test.tsx │ │ ├── CookieYes.tsx │ │ ├── index.test.ts │ │ └── index.ts │ ├── ExposeAppConfig │ │ ├── ExposeAppConfig.test.tsx │ │ ├── ExposeAppConfig.tsx │ │ ├── __snapshots__ │ │ │ └── ExposeAppConfig.test.tsx.snap │ │ └── index.ts │ ├── GoogleAnalytics │ │ ├── GoogleAnalytics.mdx │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Hello │ │ ├── Hello.stories.tsx │ │ ├── hello.css │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Hotjar │ │ ├── Hotjar.mdx │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Login │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Logout │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── NonceContext.tsx │ ├── Posthog │ │ ├── index.test.tsx │ │ └── index.tsx │ └── Typography.mdx ├── entry.client.test.tsx ├── entry.client.tsx ├── entry.server.test.ts ├── entry.server.tsx ├── features.test.ts ├── features.ts ├── hooks │ ├── hasFeature.test.ts │ ├── hasFeature.ts │ ├── useChangeLanguage.test.ts │ └── useChangeLanguage.ts ├── i18n │ ├── README.md │ ├── i18n.config.test.ts │ ├── i18n.config.ts │ ├── i18next.client.test.ts │ ├── i18next.client.ts │ ├── i18next.server.test.ts │ ├── i18next.server.ts │ ├── index.test.ts │ ├── index.ts │ ├── remix.server.test.ts │ └── remix.server.ts ├── posthog.server.test.ts ├── posthog.server.ts ├── root.test.tsx ├── root.tsx ├── routes │ ├── __snapshots__ │ │ └── dashboard.test.tsx.snap │ ├── _index.test.tsx │ ├── _index.tsx │ ├── auth.auth0.test.ts │ ├── auth.auth0.tsx │ ├── auth.callback.test.ts │ ├── auth.callback.tsx │ ├── dashboard.test.tsx │ ├── dashboard.tsx │ ├── login.test.ts │ ├── login.tsx │ ├── logout.test.ts │ ├── logout.tsx │ ├── settings.color-mode.test.ts │ ├── settings.color-mode.ts │ ├── settings.cookie-consent.test.ts │ └── settings.cookie-consent.tsx ├── session.server.test.ts ├── session.server.ts ├── sessionStorage.server.test.ts ├── sessionStorage.server.ts ├── style.test.ts ├── style.ts ├── styles │ ├── Atoms │ │ ├── _all.css │ │ ├── icons.css │ │ └── toggle.css │ ├── Components │ │ ├── ColorModeSwitcher │ │ │ ├── color-mode-toggle.css │ │ │ └── sun-and-moon.css │ │ ├── CookieConsent │ │ │ └── cookieConsent.css │ │ └── _all.css │ ├── _all.css │ ├── app.css │ ├── dark.css │ └── light.css └── utils │ ├── __snapshots__ │ ├── contentSecurityPolicy.test.ts.snap │ └── securityHeaders.test.ts.snap │ ├── contentSecurityPolicy.test.ts │ ├── contentSecurityPolicy.ts │ ├── securityHeaders.test.ts │ └── securityHeaders.ts ├── testUtils ├── deepLog.ts ├── i18nextForStorybook.ts ├── i18nextForTests.ts ├── index.ts └── renderWithi18n.tsx ├── tsconfig.json ├── types ├── globals.d.ts ├── remix.d.ts └── remix.env.d.ts ├── vitest.config.ts └── vitest.setup.ts /.adr-dir: -------------------------------------------------------------------------------- 1 | docs/adr 2 | -------------------------------------------------------------------------------- /.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.babelrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/workflows/cache.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/ephemeralDestroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/workflows/ephemeralDestroy.yml -------------------------------------------------------------------------------- /.github/workflows/storybook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/workflows/storybook.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.storybook/manager.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/storybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.storybook/storybook.css -------------------------------------------------------------------------------- /.storybook/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.storybook/theme.ts -------------------------------------------------------------------------------- /.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.storybook/tsconfig.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: meza 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/app.arc -------------------------------------------------------------------------------- /cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/cdk.json -------------------------------------------------------------------------------- /deployment/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/cdk.ts -------------------------------------------------------------------------------- /deployment/githubActionSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/githubActionSupport.ts -------------------------------------------------------------------------------- /deployment/githubEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/githubEnv.ts -------------------------------------------------------------------------------- /deployment/lib/Constructs/LambdaDeployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/lib/Constructs/LambdaDeployment.ts -------------------------------------------------------------------------------- /deployment/lib/Constructs/RemixApiGateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/lib/Constructs/RemixApiGateway.ts -------------------------------------------------------------------------------- /deployment/lib/Constructs/RemixCDN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/lib/Constructs/RemixCDN.ts -------------------------------------------------------------------------------- /deployment/lib/Constructs/RemixDeployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/lib/Constructs/RemixDeployment.ts -------------------------------------------------------------------------------- /deployment/lib/Constructs/StaticDeployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/lib/Constructs/StaticDeployment.ts -------------------------------------------------------------------------------- /deployment/stacks/EphemeralStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/stacks/EphemeralStack.ts -------------------------------------------------------------------------------- /deployment/stacks/ProductionStack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/stacks/ProductionStack.test.ts -------------------------------------------------------------------------------- /deployment/stacks/ProductionStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/deployment/stacks/ProductionStack.ts -------------------------------------------------------------------------------- /docs/adr/.adr-sequence.lock: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /docs/adr/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /docs/adr/0002-abandoning-the-stack-notion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0002-abandoning-the-stack-notion.md -------------------------------------------------------------------------------- /docs/adr/0003-using-split-instead-of-launch-darkly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0003-using-split-instead-of-launch-darkly.md -------------------------------------------------------------------------------- /docs/adr/0004-not-using-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0004-not-using-streaming.md -------------------------------------------------------------------------------- /docs/adr/0005-bundling-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0005-bundling-environment-variables.md -------------------------------------------------------------------------------- /docs/adr/0006-stack-it-is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0006-stack-it-is.md -------------------------------------------------------------------------------- /docs/adr/0007-arc-takes-a-backseat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0007-arc-takes-a-backseat.md -------------------------------------------------------------------------------- /docs/adr/0008-use-aws-cdk-for-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0008-use-aws-cdk-for-deployments.md -------------------------------------------------------------------------------- /docs/adr/0009-no-more-need-to-bundle-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0009-no-more-need-to-bundle-environment-variables.md -------------------------------------------------------------------------------- /docs/adr/0010-authentication-is-done-by-auth0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0010-authentication-is-done-by-auth0.md -------------------------------------------------------------------------------- /docs/adr/0011-suppressing-hydration-warnings-on-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0011-suppressing-hydration-warnings-on-scripts.md -------------------------------------------------------------------------------- /docs/adr/0012-session-cookie-same-site-none.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0012-session-cookie-same-site-none.md -------------------------------------------------------------------------------- /docs/adr/0013-custom-cookie-consent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0013-custom-cookie-consent.md -------------------------------------------------------------------------------- /docs/adr/0014-removing-remix-eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/0014-removing-remix-eslint.md -------------------------------------------------------------------------------- /docs/adr/decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/adr/decisions.md -------------------------------------------------------------------------------- /docs/images/cookieyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/cookieyes.png -------------------------------------------------------------------------------- /docs/images/gihtub-branch-protection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/gihtub-branch-protection.png -------------------------------------------------------------------------------- /docs/images/github-deployment-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/github-deployment-details.png -------------------------------------------------------------------------------- /docs/images/github-run-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/github-run-workflow.png -------------------------------------------------------------------------------- /docs/images/hydration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/hydration.png -------------------------------------------------------------------------------- /docs/images/renovate-github-app-choose-repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/renovate-github-app-choose-repos.png -------------------------------------------------------------------------------- /docs/images/renovate-github-app-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/renovate-github-app-install.png -------------------------------------------------------------------------------- /docs/images/senntry-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/senntry-sidebar.png -------------------------------------------------------------------------------- /docs/images/sentry-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/sentry-settings.png -------------------------------------------------------------------------------- /docs/images/sentry-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/docs/images/sentry-sidebar.png -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /playwright/e2e/cookieconsent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/cookieconsent.spec.ts -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-Google-Chrome-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-Google-Chrome-linux.png -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-Microsoft-Edge-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-Microsoft-Edge-linux.png -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-Mobile-Chrome-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-Mobile-Chrome-linux.png -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-Mobile-Safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-Mobile-Safari-linux.png -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-chromium-linux.png -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-firefox-linux.png -------------------------------------------------------------------------------- /playwright/e2e/example.spec.ts-snapshots/has-title-1-webkit-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/playwright/e2e/example.spec.ts-snapshots/has-title-1-webkit-linux.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/postcss.config.js -------------------------------------------------------------------------------- /preferences.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/preferences.arc -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/public/locales/en/translation.json -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.init/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/remix.init/gitignore -------------------------------------------------------------------------------- /remix.init/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/remix.init/index.ts -------------------------------------------------------------------------------- /remix.init/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/remix.init/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/server.js -------------------------------------------------------------------------------- /server/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime nodejs18.x 3 | -------------------------------------------------------------------------------- /server/metafile.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/server/metafile.js.json -------------------------------------------------------------------------------- /server/metafile.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/server/metafile.server.json -------------------------------------------------------------------------------- /server/version.txt: -------------------------------------------------------------------------------- 1 | f4bd41e6 -------------------------------------------------------------------------------- /socket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/socket.yml -------------------------------------------------------------------------------- /src/__snapshots__/entry.client.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/__snapshots__/entry.client.test.tsx.snap -------------------------------------------------------------------------------- /src/__snapshots__/entry.server.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/__snapshots__/entry.server.test.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/root.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/__snapshots__/root.test.tsx.snap -------------------------------------------------------------------------------- /src/atoms/Icons/__snapshots__/cookie.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/atoms/Icons/__snapshots__/cookie.test.tsx.snap -------------------------------------------------------------------------------- /src/atoms/Icons/cookie.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/atoms/Icons/cookie.test.tsx -------------------------------------------------------------------------------- /src/atoms/Icons/cookie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/atoms/Icons/cookie.tsx -------------------------------------------------------------------------------- /src/atoms/Toggle/Toggle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/atoms/Toggle/Toggle.stories.tsx -------------------------------------------------------------------------------- /src/atoms/Toggle/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/atoms/Toggle/index.test.tsx -------------------------------------------------------------------------------- /src/atoms/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/atoms/Toggle/index.tsx -------------------------------------------------------------------------------- /src/auth.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/auth.server.test.ts -------------------------------------------------------------------------------- /src/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/auth.server.ts -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/ColorModeSwitcher.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ColorModeSwitcher/ColorModeSwitcher.stories.tsx -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ColorModeSwitcher/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/clientUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ColorModeSwitcher/clientUtils.test.ts -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/clientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ColorModeSwitcher/clientUtils.ts -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ColorModeSwitcher/index.test.tsx -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ColorModeSwitcher/index.tsx -------------------------------------------------------------------------------- /src/components/Colors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Colors.mdx -------------------------------------------------------------------------------- /src/components/CookieConsent/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieConsent/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/CookieConsent/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieConsent/index.test.tsx -------------------------------------------------------------------------------- /src/components/CookieConsent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieConsent/index.tsx -------------------------------------------------------------------------------- /src/components/CookieYes/CookieYes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieYes/CookieYes.mdx -------------------------------------------------------------------------------- /src/components/CookieYes/CookieYes.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieYes/CookieYes.test.tsx -------------------------------------------------------------------------------- /src/components/CookieYes/CookieYes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieYes/CookieYes.tsx -------------------------------------------------------------------------------- /src/components/CookieYes/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieYes/index.test.ts -------------------------------------------------------------------------------- /src/components/CookieYes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/CookieYes/index.ts -------------------------------------------------------------------------------- /src/components/ExposeAppConfig/ExposeAppConfig.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ExposeAppConfig/ExposeAppConfig.test.tsx -------------------------------------------------------------------------------- /src/components/ExposeAppConfig/ExposeAppConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ExposeAppConfig/ExposeAppConfig.tsx -------------------------------------------------------------------------------- /src/components/ExposeAppConfig/__snapshots__/ExposeAppConfig.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/ExposeAppConfig/__snapshots__/ExposeAppConfig.test.tsx.snap -------------------------------------------------------------------------------- /src/components/ExposeAppConfig/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ExposeAppConfig'; 2 | -------------------------------------------------------------------------------- /src/components/GoogleAnalytics/GoogleAnalytics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/GoogleAnalytics/GoogleAnalytics.mdx -------------------------------------------------------------------------------- /src/components/GoogleAnalytics/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/GoogleAnalytics/index.test.tsx -------------------------------------------------------------------------------- /src/components/GoogleAnalytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/GoogleAnalytics/index.tsx -------------------------------------------------------------------------------- /src/components/Hello/Hello.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hello/Hello.stories.tsx -------------------------------------------------------------------------------- /src/components/Hello/hello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hello/hello.css -------------------------------------------------------------------------------- /src/components/Hello/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hello/index.test.tsx -------------------------------------------------------------------------------- /src/components/Hello/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hello/index.tsx -------------------------------------------------------------------------------- /src/components/Hotjar/Hotjar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hotjar/Hotjar.mdx -------------------------------------------------------------------------------- /src/components/Hotjar/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hotjar/index.test.tsx -------------------------------------------------------------------------------- /src/components/Hotjar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Hotjar/index.tsx -------------------------------------------------------------------------------- /src/components/Login/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Login/index.test.tsx -------------------------------------------------------------------------------- /src/components/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Login/index.tsx -------------------------------------------------------------------------------- /src/components/Logout/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Logout/index.test.tsx -------------------------------------------------------------------------------- /src/components/Logout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Logout/index.tsx -------------------------------------------------------------------------------- /src/components/NonceContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/NonceContext.tsx -------------------------------------------------------------------------------- /src/components/Posthog/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Posthog/index.test.tsx -------------------------------------------------------------------------------- /src/components/Posthog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Posthog/index.tsx -------------------------------------------------------------------------------- /src/components/Typography.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/components/Typography.mdx -------------------------------------------------------------------------------- /src/entry.client.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/entry.client.test.tsx -------------------------------------------------------------------------------- /src/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/entry.client.tsx -------------------------------------------------------------------------------- /src/entry.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/entry.server.test.ts -------------------------------------------------------------------------------- /src/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/entry.server.tsx -------------------------------------------------------------------------------- /src/features.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/features.test.ts -------------------------------------------------------------------------------- /src/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/features.ts -------------------------------------------------------------------------------- /src/hooks/hasFeature.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/hooks/hasFeature.test.ts -------------------------------------------------------------------------------- /src/hooks/hasFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/hooks/hasFeature.ts -------------------------------------------------------------------------------- /src/hooks/useChangeLanguage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/hooks/useChangeLanguage.test.ts -------------------------------------------------------------------------------- /src/hooks/useChangeLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/hooks/useChangeLanguage.ts -------------------------------------------------------------------------------- /src/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/README.md -------------------------------------------------------------------------------- /src/i18n/i18n.config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/i18n.config.test.ts -------------------------------------------------------------------------------- /src/i18n/i18n.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/i18n.config.ts -------------------------------------------------------------------------------- /src/i18n/i18next.client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/i18next.client.test.ts -------------------------------------------------------------------------------- /src/i18n/i18next.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/i18next.client.ts -------------------------------------------------------------------------------- /src/i18n/i18next.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/i18next.server.test.ts -------------------------------------------------------------------------------- /src/i18n/i18next.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/i18next.server.ts -------------------------------------------------------------------------------- /src/i18n/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/index.test.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/remix.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/remix.server.test.ts -------------------------------------------------------------------------------- /src/i18n/remix.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/i18n/remix.server.ts -------------------------------------------------------------------------------- /src/posthog.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/posthog.server.test.ts -------------------------------------------------------------------------------- /src/posthog.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/posthog.server.ts -------------------------------------------------------------------------------- /src/root.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/root.test.tsx -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/root.tsx -------------------------------------------------------------------------------- /src/routes/__snapshots__/dashboard.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/__snapshots__/dashboard.test.tsx.snap -------------------------------------------------------------------------------- /src/routes/_index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/_index.test.tsx -------------------------------------------------------------------------------- /src/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/_index.tsx -------------------------------------------------------------------------------- /src/routes/auth.auth0.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/auth.auth0.test.ts -------------------------------------------------------------------------------- /src/routes/auth.auth0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/auth.auth0.tsx -------------------------------------------------------------------------------- /src/routes/auth.callback.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/auth.callback.test.ts -------------------------------------------------------------------------------- /src/routes/auth.callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/auth.callback.tsx -------------------------------------------------------------------------------- /src/routes/dashboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/dashboard.test.tsx -------------------------------------------------------------------------------- /src/routes/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/dashboard.tsx -------------------------------------------------------------------------------- /src/routes/login.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/login.test.ts -------------------------------------------------------------------------------- /src/routes/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/login.tsx -------------------------------------------------------------------------------- /src/routes/logout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/logout.test.ts -------------------------------------------------------------------------------- /src/routes/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/logout.tsx -------------------------------------------------------------------------------- /src/routes/settings.color-mode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/settings.color-mode.test.ts -------------------------------------------------------------------------------- /src/routes/settings.color-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/settings.color-mode.ts -------------------------------------------------------------------------------- /src/routes/settings.cookie-consent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/settings.cookie-consent.test.ts -------------------------------------------------------------------------------- /src/routes/settings.cookie-consent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/routes/settings.cookie-consent.tsx -------------------------------------------------------------------------------- /src/session.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/session.server.test.ts -------------------------------------------------------------------------------- /src/session.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/session.server.ts -------------------------------------------------------------------------------- /src/sessionStorage.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/sessionStorage.server.test.ts -------------------------------------------------------------------------------- /src/sessionStorage.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/sessionStorage.server.ts -------------------------------------------------------------------------------- /src/style.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/style.test.ts -------------------------------------------------------------------------------- /src/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/style.ts -------------------------------------------------------------------------------- /src/styles/Atoms/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Atoms/_all.css -------------------------------------------------------------------------------- /src/styles/Atoms/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Atoms/icons.css -------------------------------------------------------------------------------- /src/styles/Atoms/toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Atoms/toggle.css -------------------------------------------------------------------------------- /src/styles/Components/ColorModeSwitcher/color-mode-toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Components/ColorModeSwitcher/color-mode-toggle.css -------------------------------------------------------------------------------- /src/styles/Components/ColorModeSwitcher/sun-and-moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Components/ColorModeSwitcher/sun-and-moon.css -------------------------------------------------------------------------------- /src/styles/Components/CookieConsent/cookieConsent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Components/CookieConsent/cookieConsent.css -------------------------------------------------------------------------------- /src/styles/Components/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/Components/_all.css -------------------------------------------------------------------------------- /src/styles/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/_all.css -------------------------------------------------------------------------------- /src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/app.css -------------------------------------------------------------------------------- /src/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/dark.css -------------------------------------------------------------------------------- /src/styles/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/styles/light.css -------------------------------------------------------------------------------- /src/utils/__snapshots__/contentSecurityPolicy.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/utils/__snapshots__/contentSecurityPolicy.test.ts.snap -------------------------------------------------------------------------------- /src/utils/__snapshots__/securityHeaders.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/utils/__snapshots__/securityHeaders.test.ts.snap -------------------------------------------------------------------------------- /src/utils/contentSecurityPolicy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/utils/contentSecurityPolicy.test.ts -------------------------------------------------------------------------------- /src/utils/contentSecurityPolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/utils/contentSecurityPolicy.ts -------------------------------------------------------------------------------- /src/utils/securityHeaders.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/utils/securityHeaders.test.ts -------------------------------------------------------------------------------- /src/utils/securityHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/src/utils/securityHeaders.ts -------------------------------------------------------------------------------- /testUtils/deepLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/testUtils/deepLog.ts -------------------------------------------------------------------------------- /testUtils/i18nextForStorybook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/testUtils/i18nextForStorybook.ts -------------------------------------------------------------------------------- /testUtils/i18nextForTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/testUtils/i18nextForTests.ts -------------------------------------------------------------------------------- /testUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/testUtils/index.ts -------------------------------------------------------------------------------- /testUtils/renderWithi18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/testUtils/renderWithi18n.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/types/globals.d.ts -------------------------------------------------------------------------------- /types/remix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/types/remix.d.ts -------------------------------------------------------------------------------- /types/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/types/remix.env.d.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meza/trance-stack/HEAD/vitest.setup.ts --------------------------------------------------------------------------------