├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CNAME ├── LICENSE ├── README.md ├── lerna.json ├── package.json ├── packages ├── alveron-middleware-logger │ ├── .babelrc │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── index.test.js │ │ └── index.ts │ └── tsconfig.json ├── alveron-middleware-persistence │ ├── .babelrc │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── index.test.js │ │ └── index.ts │ └── tsconfig.json ├── alveron │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── useStore.test.js │ │ ├── index.ts │ │ ├── useOptimisticStore.ts │ │ ├── useOptimisticStoreWithMiddleware.ts │ │ ├── useStore.ts │ │ ├── useStoreFactory.ts │ │ └── useStoreWithMiddleware.ts │ └── tsconfig.json └── next-documentation-helpers │ ├── .babelrc │ ├── package.json │ └── src │ ├── getAllPages.js │ ├── getHeadingContent.js │ ├── getHeadingId.js │ ├── getHeadings.js │ ├── getPageData.js │ ├── index.js │ └── processMarkdown.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── turbo.json └── website ├── components ├── Config.js ├── Footer.js ├── Layout.js ├── Template.js ├── examples │ ├── Button.js │ └── Input.js ├── icons │ └── Github.js ├── markdown │ ├── Code.js │ ├── Heading.js │ └── Markdown.js ├── navigation │ ├── NavCategory.js │ ├── NavGroup.js │ ├── NavItem.js │ └── Navigation.js └── subNavigation │ ├── SubNavItem.js │ └── SubNavigation.js ├── config.js ├── docs ├── api │ ├── useStore.mdx │ └── useStoreWithMiddleware.mdx ├── concepts │ ├── action.mdx │ ├── effect.mdx │ ├── middleware.mdx │ └── model.mdx ├── examples │ ├── contact-form.mdx │ ├── counter.mdx │ └── todo-list.mdx ├── intro │ ├── caveats.mdx │ ├── design-principles.mdx │ ├── motivation.mdx │ ├── overview.mdx │ └── theoretical-background.mdx └── recipes │ └── data-persistence.mdx ├── examples ├── ContactForm.js ├── Counter.js └── TodoList.js ├── next.config.js ├── package.json ├── pages ├── [...path].js ├── _app.js ├── _document.js └── playground │ ├── contactForm.js │ ├── counter.js │ └── todo.js ├── public └── fonts │ ├── dank │ ├── DankMono-Bold.woff2 │ ├── DankMono-Italic.woff2 │ ├── DankMono-Regular.woff2 │ └── dmvendor.css │ └── inter │ ├── Inter-Black.woff │ ├── Inter-Black.woff2 │ ├── Inter-BlackItalic.woff │ ├── Inter-BlackItalic.woff2 │ ├── Inter-Bold.woff │ ├── Inter-Bold.woff2 │ ├── Inter-BoldItalic.woff │ ├── Inter-BoldItalic.woff2 │ ├── Inter-ExtraBold.woff │ ├── Inter-ExtraBold.woff2 │ ├── Inter-ExtraBoldItalic.woff │ ├── Inter-ExtraBoldItalic.woff2 │ ├── Inter-ExtraLight.woff │ ├── Inter-ExtraLight.woff2 │ ├── Inter-ExtraLightItalic.woff │ ├── Inter-ExtraLightItalic.woff2 │ ├── Inter-Italic.woff │ ├── Inter-Italic.woff2 │ ├── Inter-Light.woff │ ├── Inter-Light.woff2 │ ├── Inter-LightItalic.woff │ ├── Inter-LightItalic.woff2 │ ├── Inter-Medium.woff │ ├── Inter-Medium.woff2 │ ├── Inter-MediumItalic.woff │ ├── Inter-MediumItalic.woff2 │ ├── Inter-Regular.woff │ ├── Inter-Regular.woff2 │ ├── Inter-SemiBold.woff │ ├── Inter-SemiBold.woff2 │ ├── Inter-SemiBoldItalic.woff │ ├── Inter-SemiBoldItalic.woff2 │ ├── Inter-Thin.woff │ ├── Inter-Thin.woff2 │ ├── Inter-ThinItalic.woff │ ├── Inter-ThinItalic.woff2 │ ├── Inter-italic.var.woff2 │ ├── Inter-roman.var.woff2 │ ├── Inter.var.woff2 │ └── inter.css ├── styling ├── FelaProvider.js ├── getFelaRenderer.js ├── staticStyle.js └── useTheme.js ├── theme.js └── toc.json /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: robinweser 4 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | alveron.js.org 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/README.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/package.json -------------------------------------------------------------------------------- /packages/alveron-middleware-logger/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-logger/.babelrc -------------------------------------------------------------------------------- /packages/alveron-middleware-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-logger/README.md -------------------------------------------------------------------------------- /packages/alveron-middleware-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-logger/package.json -------------------------------------------------------------------------------- /packages/alveron-middleware-logger/src/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-logger/src/__tests__/index.test.js -------------------------------------------------------------------------------- /packages/alveron-middleware-logger/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-logger/src/index.ts -------------------------------------------------------------------------------- /packages/alveron-middleware-logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-logger/tsconfig.json -------------------------------------------------------------------------------- /packages/alveron-middleware-persistence/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-persistence/.babelrc -------------------------------------------------------------------------------- /packages/alveron-middleware-persistence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-persistence/README.md -------------------------------------------------------------------------------- /packages/alveron-middleware-persistence/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-persistence/package.json -------------------------------------------------------------------------------- /packages/alveron-middleware-persistence/src/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-persistence/src/__tests__/index.test.js -------------------------------------------------------------------------------- /packages/alveron-middleware-persistence/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-persistence/src/index.ts -------------------------------------------------------------------------------- /packages/alveron-middleware-persistence/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron-middleware-persistence/tsconfig.json -------------------------------------------------------------------------------- /packages/alveron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/package.json -------------------------------------------------------------------------------- /packages/alveron/src/__tests__/useStore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/__tests__/useStore.test.js -------------------------------------------------------------------------------- /packages/alveron/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/index.ts -------------------------------------------------------------------------------- /packages/alveron/src/useOptimisticStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/useOptimisticStore.ts -------------------------------------------------------------------------------- /packages/alveron/src/useOptimisticStoreWithMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/useOptimisticStoreWithMiddleware.ts -------------------------------------------------------------------------------- /packages/alveron/src/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/useStore.ts -------------------------------------------------------------------------------- /packages/alveron/src/useStoreFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/useStoreFactory.ts -------------------------------------------------------------------------------- /packages/alveron/src/useStoreWithMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/src/useStoreWithMiddleware.ts -------------------------------------------------------------------------------- /packages/alveron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/alveron/tsconfig.json -------------------------------------------------------------------------------- /packages/next-documentation-helpers/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/.babelrc -------------------------------------------------------------------------------- /packages/next-documentation-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/package.json -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/getAllPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/getAllPages.js -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/getHeadingContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/getHeadingContent.js -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/getHeadingId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/getHeadingId.js -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/getHeadings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/getHeadings.js -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/getPageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/getPageData.js -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/index.js -------------------------------------------------------------------------------- /packages/next-documentation-helpers/src/processMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/packages/next-documentation-helpers/src/processMarkdown.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/turbo.json -------------------------------------------------------------------------------- /website/components/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/Config.js -------------------------------------------------------------------------------- /website/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/Footer.js -------------------------------------------------------------------------------- /website/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/Layout.js -------------------------------------------------------------------------------- /website/components/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/Template.js -------------------------------------------------------------------------------- /website/components/examples/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/examples/Button.js -------------------------------------------------------------------------------- /website/components/examples/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/examples/Input.js -------------------------------------------------------------------------------- /website/components/icons/Github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/icons/Github.js -------------------------------------------------------------------------------- /website/components/markdown/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/markdown/Code.js -------------------------------------------------------------------------------- /website/components/markdown/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/markdown/Heading.js -------------------------------------------------------------------------------- /website/components/markdown/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/markdown/Markdown.js -------------------------------------------------------------------------------- /website/components/navigation/NavCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/navigation/NavCategory.js -------------------------------------------------------------------------------- /website/components/navigation/NavGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/navigation/NavGroup.js -------------------------------------------------------------------------------- /website/components/navigation/NavItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/navigation/NavItem.js -------------------------------------------------------------------------------- /website/components/navigation/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/navigation/Navigation.js -------------------------------------------------------------------------------- /website/components/subNavigation/SubNavItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/subNavigation/SubNavItem.js -------------------------------------------------------------------------------- /website/components/subNavigation/SubNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/components/subNavigation/SubNavigation.js -------------------------------------------------------------------------------- /website/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/config.js -------------------------------------------------------------------------------- /website/docs/api/useStore.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/api/useStore.mdx -------------------------------------------------------------------------------- /website/docs/api/useStoreWithMiddleware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/api/useStoreWithMiddleware.mdx -------------------------------------------------------------------------------- /website/docs/concepts/action.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/concepts/action.mdx -------------------------------------------------------------------------------- /website/docs/concepts/effect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/concepts/effect.mdx -------------------------------------------------------------------------------- /website/docs/concepts/middleware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/concepts/middleware.mdx -------------------------------------------------------------------------------- /website/docs/concepts/model.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/concepts/model.mdx -------------------------------------------------------------------------------- /website/docs/examples/contact-form.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/examples/contact-form.mdx -------------------------------------------------------------------------------- /website/docs/examples/counter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/examples/counter.mdx -------------------------------------------------------------------------------- /website/docs/examples/todo-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/examples/todo-list.mdx -------------------------------------------------------------------------------- /website/docs/intro/caveats.mdx: -------------------------------------------------------------------------------- 1 | # Caveats 2 | 3 | ## State is local 4 | 5 | tbd. 6 | -------------------------------------------------------------------------------- /website/docs/intro/design-principles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/intro/design-principles.mdx -------------------------------------------------------------------------------- /website/docs/intro/motivation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/intro/motivation.mdx -------------------------------------------------------------------------------- /website/docs/intro/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/docs/intro/overview.mdx -------------------------------------------------------------------------------- /website/docs/intro/theoretical-background.mdx: -------------------------------------------------------------------------------- 1 | # Theoretical Background 2 | 3 | tbd. 4 | -------------------------------------------------------------------------------- /website/docs/recipes/data-persistence.mdx: -------------------------------------------------------------------------------- 1 | # Data Persistence 2 | 3 | tbd. 4 | -------------------------------------------------------------------------------- /website/examples/ContactForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/examples/ContactForm.js -------------------------------------------------------------------------------- /website/examples/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/examples/Counter.js -------------------------------------------------------------------------------- /website/examples/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/examples/TodoList.js -------------------------------------------------------------------------------- /website/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/next.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/[...path].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/pages/[...path].js -------------------------------------------------------------------------------- /website/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/pages/_app.js -------------------------------------------------------------------------------- /website/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/pages/_document.js -------------------------------------------------------------------------------- /website/pages/playground/contactForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/pages/playground/contactForm.js -------------------------------------------------------------------------------- /website/pages/playground/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/pages/playground/counter.js -------------------------------------------------------------------------------- /website/pages/playground/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/pages/playground/todo.js -------------------------------------------------------------------------------- /website/public/fonts/dank/DankMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/dank/DankMono-Bold.woff2 -------------------------------------------------------------------------------- /website/public/fonts/dank/DankMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/dank/DankMono-Italic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/dank/DankMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/dank/DankMono-Regular.woff2 -------------------------------------------------------------------------------- /website/public/fonts/dank/dmvendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/dank/dmvendor.css -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /website/public/fonts/inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/public/fonts/inter/inter.css -------------------------------------------------------------------------------- /website/styling/FelaProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/styling/FelaProvider.js -------------------------------------------------------------------------------- /website/styling/getFelaRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/styling/getFelaRenderer.js -------------------------------------------------------------------------------- /website/styling/staticStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/styling/staticStyle.js -------------------------------------------------------------------------------- /website/styling/useTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/styling/useTheme.js -------------------------------------------------------------------------------- /website/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/theme.js -------------------------------------------------------------------------------- /website/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinweser/alveron/HEAD/website/toc.json --------------------------------------------------------------------------------