├── .babelrc ├── .dependabot └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── chromatic.yml │ ├── e2e.yml │ └── validation.yml ├── .gitignore ├── .kodiak.toml ├── .nvmrc ├── .prettierignore ├── .prettierrc.yaml ├── .storybook ├── main.js └── preview.js ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── examples │ │ ├── actions.spec.ts │ │ └── aliasing.spec.ts ├── plugins │ └── index.js ├── support │ ├── commands.js │ ├── index.d.ts │ └── index.js └── tsconfig.json ├── jest.setup.ts ├── next-env.d.ts ├── package.json ├── public ├── favicon.ico ├── fonts │ ├── Gilroy-ExtraBold │ │ ├── font.ttf │ │ ├── font.woff │ │ └── font.woff2 │ └── Gilroy-Light │ │ ├── font.ttf │ │ ├── font.woff │ │ └── font.woff2 └── zeit.svg ├── server ├── index.ts └── tsconfig.json ├── src ├── components │ └── Title │ │ ├── Title.component.tsx │ │ ├── Title.stories.mdx │ │ └── Title.test.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx └── styles │ ├── global.tsx │ └── types.d.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.babelrc -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/chromatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.github/workflows/chromatic.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.gitignore -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.16.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:3000" 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/examples/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/integration/examples/actions.spec.ts -------------------------------------------------------------------------------- /cypress/integration/examples/aliasing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/integration/examples/aliasing.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/support/index.d.ts -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/jest.setup.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/Gilroy-ExtraBold/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/fonts/Gilroy-ExtraBold/font.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-ExtraBold/font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/fonts/Gilroy-ExtraBold/font.woff -------------------------------------------------------------------------------- /public/fonts/Gilroy-ExtraBold/font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/fonts/Gilroy-ExtraBold/font.woff2 -------------------------------------------------------------------------------- /public/fonts/Gilroy-Light/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/fonts/Gilroy-Light/font.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-Light/font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/fonts/Gilroy-Light/font.woff -------------------------------------------------------------------------------- /public/fonts/Gilroy-Light/font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/fonts/Gilroy-Light/font.woff2 -------------------------------------------------------------------------------- /public/zeit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/public/zeit.svg -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /src/components/Title/Title.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/components/Title/Title.component.tsx -------------------------------------------------------------------------------- /src/components/Title/Title.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/components/Title/Title.stories.mdx -------------------------------------------------------------------------------- /src/components/Title/Title.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/components/Title/Title.test.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/styles/global.tsx -------------------------------------------------------------------------------- /src/styles/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/src/styles/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXamadeus/next-emotion/HEAD/yarn.lock --------------------------------------------------------------------------------