├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── deduplicate-yarn.yml │ ├── format.yml │ ├── lint.yml │ └── no-response.yml ├── .gitignore ├── .nvmrc ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── __template ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── _official-blog-tutorial ├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .github │ └── workflows │ │ └── deploy.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .npmrc ├── .prettierignore ├── Dockerfile ├── README.md ├── app │ ├── db.server.ts │ ├── models │ │ ├── note.server.ts │ │ ├── post.server.ts │ │ └── user.server.ts │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── healthcheck.tsx │ │ ├── join.tsx │ │ ├── login.tsx │ │ ├── logout.tsx │ │ ├── notes.$noteId.tsx │ │ ├── notes._index.tsx │ │ ├── notes.new.tsx │ │ ├── notes.tsx │ │ ├── posts.$slug.tsx │ │ ├── posts._index.tsx │ │ ├── posts.admin._index.tsx │ │ ├── posts.admin.new.tsx │ │ └── posts.admin.tsx │ ├── session.server.ts │ ├── singleton.server.ts │ ├── tailwind.css │ ├── utils.test.ts │ └── utils.ts ├── cypress.config.ts ├── cypress │ ├── .eslintrc.js │ ├── e2e │ │ └── smoke.cy.ts │ ├── fixtures │ │ └── example.json │ ├── support │ │ ├── commands.ts │ │ ├── create-user.ts │ │ ├── delete-user.ts │ │ └── e2e.ts │ └── tsconfig.json ├── fly.toml ├── mocks │ ├── README.md │ └── index.js ├── package.json ├── postcss.config.js ├── prisma │ ├── migrations │ │ ├── 20220307190657_init │ │ │ └── migration.sql │ │ └── migration_lock.toml │ ├── schema.prisma │ └── seed.ts ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── start.sh ├── tailwind.config.ts ├── test │ └── setup-test-env.ts ├── tsconfig.json └── vitest.config.ts ├── _official-contacts-tutorial ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── app.css │ ├── data.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── contacts.$contactId.destroy.tsx │ │ ├── contacts.$contactId.tsx │ │ └── contacts.$contactId_.edit.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── _official-jokes ├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── README.md ├── app │ ├── components │ │ └── joke.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── jokes.$jokeId.tsx │ │ ├── jokes._index.tsx │ │ ├── jokes.new.tsx │ │ ├── jokes.tsx │ │ ├── jokes[.]rss.tsx │ │ ├── login.tsx │ │ └── logout.tsx │ ├── styles │ │ ├── global-large.css │ │ ├── global-medium.css │ │ ├── global.css │ │ ├── index.css │ │ ├── jokes.css │ │ └── login.css │ └── utils │ │ ├── db.server.ts │ │ ├── request.server.ts │ │ ├── session.server.ts │ │ └── singleton.server.ts ├── fly.toml ├── package.json ├── prisma │ ├── migrations │ │ ├── 20211117212928_init │ │ │ └── migration.sql │ │ └── migration_lock.toml │ ├── schema.prisma │ └── seed.ts ├── public │ ├── favicon.ico │ ├── fonts │ │ └── baloo │ │ │ ├── License.txt │ │ │ └── baloo.woff │ └── social.png ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── start.sh └── tsconfig.json ├── _official-realtime-app ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── amalgo-box.client.tsx │ ├── data.tsx │ ├── events.ts │ ├── icons.svg │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── issues-events.tsx │ │ ├── issues.$id.tsx │ │ └── issues.$id.update.tsx │ └── styles.css ├── package.json ├── postcss.config.js ├── public │ └── favicon.ico ├── sandbox.config.json ├── tailwind.config.ts ├── tsconfig.json └── vite.config.ts ├── bullmq-task-queue ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── queues │ │ └── notifier.server.ts │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── utils │ │ ├── queue.server.ts │ │ └── redis.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── chakra-ui ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── client-only-components ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── components │ │ ├── broken-on-the-server.client.tsx │ │ └── complex-component.tsx │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── client-side-validation ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── index.css │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── collected-notes ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── cn.server.ts │ ├── root.tsx │ └── routes │ │ ├── $slug.tsx │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── combobox-resource-route ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── app.css │ ├── models │ │ └── langs.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── lang-search.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── dark-mode ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ └── action.set-theme.tsx │ ├── styles │ │ └── styles.css │ └── utils │ │ ├── theme-provider.tsx │ │ └── theme.server.ts ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── dataloader ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── data.server.ts │ ├── loaders │ │ └── userLoader.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── users._index.tsx │ │ └── users.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── server │ └── index.ts └── tsconfig.json ├── docker-with-yarn-pnp ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .yarnrc.yml ├── Dockerfile ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── emotion ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── jokes-error.tsx │ │ └── jokes.tsx │ └── styles │ │ ├── client.context.tsx │ │ ├── createEmotionCache.ts │ │ └── server.context.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── error-boundary ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── data.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── users.$userId.tsx │ │ └── users.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── file-and-cloudinary-upload ├── .env.sample ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── cloudinary-upload.tsx │ │ └── local-upload.tsx │ └── utils │ │ └── utils.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── file-and-s3-upload ├── .env.sample ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── s3-upload.tsx │ └── utils │ │ └── s3.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── firebase ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── firebase-rest.ts │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── join.tsx │ │ ├── login.tsx │ │ └── logout.tsx │ ├── server │ │ ├── auth.server.ts │ │ ├── db.server.ts │ │ └── firebase.server.ts │ └── sessions.ts ├── firebase-fixtures │ ├── auth │ │ ├── accounts.json │ │ └── config.json │ ├── firebase-export-metadata.json │ └── firestore.rules ├── firebase.json ├── functions.yaml ├── functions │ └── index.js ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── screen_recording.gif └── tsconfig.json ├── form-to-notion-db ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── notion.server.tsx │ └── root.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── framer-motion ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── sandbox.config.json └── tsconfig.json ├── framer-route-animation ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── about.tsx │ │ └── blogs.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── gdpr-cookie-consent ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── cookies.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── enable-analytics.tsx ├── package.json ├── public │ ├── dummy-analytics-script.js │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── google-analytics ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── contact.tsx │ │ ├── dashboard.tsx │ │ └── profile.tsx │ └── utils │ │ └── gtags.client.ts ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── graphql-api ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── components │ │ └── Code.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── api.character.tsx │ │ ├── api.characters.tsx │ │ ├── character.$id.tsx │ │ └── character.error.tsx │ └── utils │ │ └── index.ts ├── codegen.yml ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── image-resize ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── components │ │ └── image.tsx │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── assets.resize.$.ts ├── assets │ ├── dog-1.jpg │ └── other-dogs │ │ └── dog-2.jpg ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── infinite-scrolling ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── offset.advanced.tsx │ │ ├── offset.simple.tsx │ │ ├── page.advanced.tsx │ │ ├── page.alternative.tsx │ │ └── page.simple.tsx │ ├── styles │ │ └── index.css │ └── utils │ │ └── backend.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── io-ts-formdata-decoding ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── formData.ts │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── ioredis ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── utils │ │ └── redis.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── leaflet ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── components │ │ └── map.client.tsx │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── mantine ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── clientStyleContext.tsx │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── error.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── msw ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── mocks │ ├── handlers.cjs │ └── index.cjs ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── multiple-forms ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── data.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── invitations.tsx ├── data.json ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── multiple-params ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── db.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── clients.$clientId._index.tsx │ │ ├── clients.$clientId.invoices.$invoiceId.tsx │ │ ├── clients.$clientId.invoices._index.tsx │ │ ├── clients.$clientId.invoices.tsx │ │ ├── clients.$clientId.tsx │ │ ├── clients._index.tsx │ │ └── clients.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── mux-video ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── lib │ │ └── mux.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── mux.webhook.ts │ │ ├── playback.$playbackId.tsx │ │ └── status.$assetId.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── newsletter-signup ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ └── newsletter.tsx │ └── styles.css ├── package.json ├── public │ ├── bg.svg │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── nprogress ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── slow-page.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── on-demand-hydration ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── on-demand-js.tsx │ │ ├── with-js.tsx │ │ └── without-js.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── outlet-form-rerender ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── data.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── users.$userId.tsx │ │ └── users.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── package.json ├── pathless-routes ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── articles._layout.hello.md │ │ ├── articles._layout.tsx │ │ └── articles.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── picocss ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ └── examples.tsx │ └── styles.css ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── playwright ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── login.tsx ├── e2e │ └── page.spec.tsx ├── package.json ├── playwright.config.ts ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── pm-app ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── README.md ├── app │ ├── auth.server.ts │ ├── db.server.tsx │ ├── models.ts │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── dashboard._index.tsx │ │ ├── dashboard.projects.$projectId.delete.tsx │ │ ├── dashboard.projects.$projectId.list.$listId.tsx │ │ ├── dashboard.projects.$projectId.tsx │ │ ├── dashboard.projects.new.tsx │ │ ├── dashboard.todo-lists.$listId._index.tsx │ │ ├── dashboard.todo-lists.$listId.delete.tsx │ │ ├── dashboard.todo-lists._index.tsx │ │ ├── dashboard.todo-lists.new.tsx │ │ ├── dashboard.todos.$todoId._index.tsx │ │ ├── dashboard.todos.$todoId.delete.tsx │ │ ├── dashboard.todos.$todoId.edit.tsx │ │ ├── dashboard.todos.$todoId.set.tsx │ │ ├── dashboard.todos._index.tsx │ │ ├── dashboard.todos.new.tsx │ │ ├── dashboard.todos.toggle.tsx │ │ ├── dashboard.tsx │ │ ├── register.tsx │ │ ├── sign-in.tsx │ │ └── sign-out.tsx │ ├── session.server.ts │ ├── styles │ │ ├── _defs.css │ │ ├── _normalize.css │ │ ├── _resets.css │ │ ├── _root.css │ │ ├── _utils.css │ │ ├── global.css │ │ ├── routes │ │ │ ├── dashboard.css │ │ │ ├── dashboard │ │ │ │ ├── index.css │ │ │ │ ├── projects │ │ │ │ │ ├── $projectId │ │ │ │ │ │ └── index.css │ │ │ │ │ └── new.css │ │ │ │ └── todo-lists │ │ │ │ │ ├── $listId │ │ │ │ │ └── index.css │ │ │ │ │ └── new.css │ │ │ ├── index.css │ │ │ ├── register.css │ │ │ └── sign-in.css │ │ └── ui │ │ │ ├── _avatar.css │ │ │ ├── _button.css │ │ │ ├── _combobox.css │ │ │ ├── _dialog.css │ │ │ ├── _dropdown-menu.css │ │ │ ├── _flex.css │ │ │ ├── _form.css │ │ │ ├── _max-container.css │ │ │ ├── _member-search.css │ │ │ ├── _menu-button.css │ │ │ ├── _note.css │ │ │ ├── _shadow-box.css │ │ │ ├── _stack.css │ │ │ ├── _todo-list.css │ │ │ └── _token.css │ ├── ui │ │ ├── auth-header.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── combobox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── flex.tsx │ │ ├── form.tsx │ │ ├── icon-box.tsx │ │ ├── icons.tsx │ │ ├── link.tsx │ │ ├── max-container.tsx │ │ ├── member-search.tsx │ │ ├── note.tsx │ │ ├── section-heading.tsx │ │ ├── shadow-box.tsx │ │ ├── stack.tsx │ │ ├── todo-list.tsx │ │ └── token.tsx │ └── utils │ │ ├── index.ts │ │ ├── react.tsx │ │ ├── sanitizer.ts │ │ ├── types.ts │ │ └── validation.ts ├── docker-compose.example.yml ├── package.json ├── pm2.config.js ├── postcss.config.js ├── prisma │ ├── migrations │ │ ├── 20211207143433_ │ │ │ └── migration.sql │ │ ├── 20211207153717_ │ │ │ └── migration.sql │ │ ├── 20211207231727_ │ │ │ └── migration.sql │ │ ├── 20211208222216_ │ │ │ └── migration.sql │ │ └── migration_lock.toml │ └── schema.prisma ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── server │ ├── index.js │ ├── tsconfig.json │ └── utils.js ├── tsconfig.json └── typings │ └── global.d.ts ├── prettier.config.js ├── quirrel ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── queues │ │ └── greetings.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── queues.greetings.ts ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── react-quill ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── components │ │ ├── fallback-component.tsx │ │ └── textEditor.client.tsx │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── react-spring ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── no-script.css │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── styles.css ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── redis-upstash-session ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ ├── sessions.server.ts │ └── sessions │ │ └── upstash.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── remix-auth-auth0 ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── constants │ │ └── index.server.ts │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── auth0.tsx │ │ ├── callback.tsx │ │ ├── logout.tsx │ │ └── private.tsx │ └── utils │ │ └── auth.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── remix-auth-form ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── auth.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── login.tsx │ │ └── private.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── remix-auth-github ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── auth.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── auth.github.callback.tsx │ │ ├── auth.github.tsx │ │ └── private.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── remix-auth-supabase-github ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── auth.server.ts │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── login.tsx │ │ ├── oauth.callback.tsx │ │ └── private.tsx │ ├── supabase.client.ts │ └── supabase.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── remix-auth-supabase ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── auth.server.ts │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── login.tsx │ │ └── private.tsx │ └── supabase.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── route-modal ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── invoices.$id.edit.tsx │ │ ├── invoices.add.tsx │ │ └── invoices.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── routes-gen ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── products.$productId.tsx │ │ └── products._index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── rust ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ ├── rust.server.ts │ └── styles │ │ ├── global.css │ │ └── index.css ├── package.json ├── public │ └── favicon.ico ├── rust-functions │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── sanity ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── components │ │ ├── Preview.tsx │ │ └── index.ts │ ├── lib │ │ └── sanity │ │ │ ├── config.ts │ │ │ ├── filterDataToSingleItem.ts │ │ │ ├── getClient.ts │ │ │ ├── helpers.tsx │ │ │ ├── index.ts │ │ │ └── usePreviewSubscription.ts │ ├── root.tsx │ ├── routes │ │ ├── $slug.tsx │ │ └── _index.tsx │ └── styles │ │ └── global.css ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── studio │ ├── .npmignore │ ├── README.md │ ├── config │ │ ├── .checksums │ │ └── @sanity │ │ │ ├── data-aspects.json │ │ │ ├── default-layout.json │ │ │ ├── default-login.json │ │ │ ├── form-builder.json │ │ │ └── google-maps-input.json │ ├── package.json │ ├── plugins │ │ └── .gitkeep │ ├── sanity.json │ ├── schemas │ │ ├── blockContent.js │ │ ├── castMember.js │ │ ├── crewMember.js │ │ ├── movie.js │ │ ├── person.js │ │ ├── plotSummaries.js │ │ ├── plotSummary.js │ │ ├── schema.js │ │ └── screening.js │ ├── static │ │ └── favicon.ico │ └── tsconfig.json └── tsconfig.json ├── sass ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── styles │ │ └── global.scss ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── search-input ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── styles │ │ ├── global.css │ │ └── index.css ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── session-flash ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── utils │ │ └── session.server.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── sharing-loader-data ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── data.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ ├── workshops.$workshopId.tsx │ │ ├── workshops._index.tsx │ │ └── workshops.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── socket.io ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── context.tsx │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── server.js ├── tsconfig.json └── vite.config.ts ├── sse-chat ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ └── sse.chat.ts │ └── services │ │ └── emitter.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── sse-counter ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── sse.counter.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── stitches ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── jokes-error.tsx │ │ └── jokes.tsx │ └── styles │ │ ├── client.context.ts │ │ └── stitches.config.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── strapi ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── strapi │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── config │ │ ├── admin.js │ │ ├── api.js │ │ ├── database.js │ │ ├── middlewares.js │ │ └── server.js │ ├── favicon.ico │ ├── package.json │ ├── public │ │ ├── robots.txt │ │ └── uploads │ │ │ └── .gitkeep │ └── src │ │ ├── admin │ │ ├── app.example.js │ │ └── webpack.config.example.js │ │ ├── api │ │ ├── .gitkeep │ │ └── post │ │ │ ├── content-types │ │ │ └── post │ │ │ │ └── schema.json │ │ │ ├── controllers │ │ │ └── post.js │ │ │ ├── routes │ │ │ └── post.js │ │ │ └── services │ │ │ └── post.js │ │ ├── extensions │ │ ├── .gitkeep │ │ └── users-permissions │ │ │ └── content-types │ │ │ └── user │ │ │ └── schema.json │ │ └── index.js └── tsconfig.json ├── stripe-integration ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ ├── api.stripe-web-hook.tsx │ │ ├── buy.tsx │ │ ├── payment.cancelled.tsx │ │ └── payment.success.tsx │ └── utils │ │ └── stripe.server.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── styled-components ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ ├── _boundary.$.tsx │ │ ├── _boundary._index.tsx │ │ ├── _boundary.error.tsx │ │ └── _boundary.tsx │ └── styles-context.tsx ├── components │ ├── .babelrc │ ├── src │ │ └── Box.tsx │ └── tsconfig.json ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── styletron ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── styletron.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── supabase-subscription ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── realtime.tsx │ └── utils │ │ └── supabaseClient.server.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── tailwindcss ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── tailwind.css ├── package.json ├── postcss.config.js ├── public │ └── favicon.ico ├── sandbox.config.json ├── tailwind.config.ts ├── tsconfig.json └── vite.config.ts ├── theme-ui ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── jokes-error.tsx │ │ └── jokes.tsx │ └── styles │ │ ├── context.tsx │ │ └── createEmotionCache.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── tiptap-collab-editing ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── editor.tsx │ └── utils │ │ └── webrtc.client.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── toast-message ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── message.server.ts │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── submit-secret.ts ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── turborepo-vercel ├── .gitignore ├── README.md ├── apps │ └── remix-app │ │ ├── .eslintrc.js │ │ ├── app │ │ ├── entry.server.tsx │ │ ├── root.tsx │ │ └── routes │ │ │ └── _index.tsx │ │ ├── package.json │ │ ├── public │ │ └── favicon.ico │ │ ├── remix.config.js │ │ ├── remix.env.d.ts │ │ ├── server.js │ │ └── tsconfig.json ├── package.json ├── packages │ └── ui │ │ ├── package.json │ │ ├── src │ │ ├── Button.tsx │ │ └── index.tsx │ │ └── tsconfig.json ├── turbo.json └── vercel-project-config-example.jpg ├── twind ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── entry.server.tsx │ ├── root.tsx │ └── routes │ │ ├── _index.tsx │ │ └── anything.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── tsconfig.json └── twind.config.ts ├── unocss ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json ├── unocss.config.ts └── vite.config.ts ├── vanilla-extract ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── app │ ├── components │ │ ├── Box │ │ │ ├── Box.ts │ │ │ └── sprinkles.css.ts │ │ ├── Text │ │ │ ├── Text.css.ts │ │ │ └── Text.tsx │ │ └── index.ts │ ├── global.css.ts │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── tsconfig.json └── vite.config.ts ├── xata ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ ├── routes │ │ └── _index.tsx │ └── styles.css ├── package.json ├── public │ ├── favicon.ico │ ├── flap.gif │ ├── og.jpg │ └── xatafly.svg ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json ├── schema.template.json └── tsconfig.json ├── yarn-pnp ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── root.tsx │ └── routes │ │ └── _index.tsx ├── package.json ├── public │ └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── sandbox.config.json └── tsconfig.json ├── yarn.lock └── zerops ├── .gitignore ├── README.md ├── app ├── components │ └── Code.tsx ├── root.tsx ├── routes │ └── _index.tsx └── styles │ └── main.css ├── header.png ├── package.json ├── public └── favicon.ico ├── server.js ├── tsconfig.json ├── vite.config.ts └── zerops.yml /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/README.md -------------------------------------------------------------------------------- /__template/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/.eslintrc.cjs -------------------------------------------------------------------------------- /__template/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /__template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/README.md -------------------------------------------------------------------------------- /__template/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/app/root.tsx -------------------------------------------------------------------------------- /__template/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/app/routes/_index.tsx -------------------------------------------------------------------------------- /__template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/package.json -------------------------------------------------------------------------------- /__template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/public/favicon.ico -------------------------------------------------------------------------------- /__template/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/sandbox.config.json -------------------------------------------------------------------------------- /__template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/tsconfig.json -------------------------------------------------------------------------------- /__template/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/__template/vite.config.ts -------------------------------------------------------------------------------- /_official-blog-tutorial/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/.dockerignore -------------------------------------------------------------------------------- /_official-blog-tutorial/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/.env.example -------------------------------------------------------------------------------- /_official-blog-tutorial/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/.eslintrc.js -------------------------------------------------------------------------------- /_official-blog-tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/.gitignore -------------------------------------------------------------------------------- /_official-blog-tutorial/.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/.gitpod.yml -------------------------------------------------------------------------------- /_official-blog-tutorial/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /_official-blog-tutorial/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/Dockerfile -------------------------------------------------------------------------------- /_official-blog-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/README.md -------------------------------------------------------------------------------- /_official-blog-tutorial/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/app/root.tsx -------------------------------------------------------------------------------- /_official-blog-tutorial/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/fly.toml -------------------------------------------------------------------------------- /_official-blog-tutorial/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-blog-tutorial/start.sh -------------------------------------------------------------------------------- /_official-jokes/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/.dockerignore -------------------------------------------------------------------------------- /_official-jokes/.env.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL="file:./dev.db" 2 | SESSION_SECRET="remixrulz" 3 | -------------------------------------------------------------------------------- /_official-jokes/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/.eslintrc.js -------------------------------------------------------------------------------- /_official-jokes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/.gitignore -------------------------------------------------------------------------------- /_official-jokes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/Dockerfile -------------------------------------------------------------------------------- /_official-jokes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/README.md -------------------------------------------------------------------------------- /_official-jokes/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/app/root.tsx -------------------------------------------------------------------------------- /_official-jokes/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/fly.toml -------------------------------------------------------------------------------- /_official-jokes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/package.json -------------------------------------------------------------------------------- /_official-jokes/prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/prisma/seed.ts -------------------------------------------------------------------------------- /_official-jokes/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/public/favicon.ico -------------------------------------------------------------------------------- /_official-jokes/public/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/public/social.png -------------------------------------------------------------------------------- /_official-jokes/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/remix.config.js -------------------------------------------------------------------------------- /_official-jokes/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/remix.env.d.ts -------------------------------------------------------------------------------- /_official-jokes/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/start.sh -------------------------------------------------------------------------------- /_official-jokes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-jokes/tsconfig.json -------------------------------------------------------------------------------- /_official-realtime-app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /_official-realtime-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/_official-realtime-app/README.md -------------------------------------------------------------------------------- /bullmq-task-queue/.env.example: -------------------------------------------------------------------------------- 1 | REDIS_URL=redis://localhost:6379 2 | -------------------------------------------------------------------------------- /bullmq-task-queue/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/.eslintrc.js -------------------------------------------------------------------------------- /bullmq-task-queue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/.gitignore -------------------------------------------------------------------------------- /bullmq-task-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/README.md -------------------------------------------------------------------------------- /bullmq-task-queue/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/app/root.tsx -------------------------------------------------------------------------------- /bullmq-task-queue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/package.json -------------------------------------------------------------------------------- /bullmq-task-queue/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/remix.config.js -------------------------------------------------------------------------------- /bullmq-task-queue/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/remix.env.d.ts -------------------------------------------------------------------------------- /bullmq-task-queue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/bullmq-task-queue/tsconfig.json -------------------------------------------------------------------------------- /chakra-ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/.eslintrc.js -------------------------------------------------------------------------------- /chakra-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/.gitignore -------------------------------------------------------------------------------- /chakra-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/README.md -------------------------------------------------------------------------------- /chakra-ui/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/app/entry.client.tsx -------------------------------------------------------------------------------- /chakra-ui/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/app/entry.server.tsx -------------------------------------------------------------------------------- /chakra-ui/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/app/root.tsx -------------------------------------------------------------------------------- /chakra-ui/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/app/routes/_index.tsx -------------------------------------------------------------------------------- /chakra-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/package.json -------------------------------------------------------------------------------- /chakra-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/public/favicon.ico -------------------------------------------------------------------------------- /chakra-ui/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/remix.config.js -------------------------------------------------------------------------------- /chakra-ui/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/remix.env.d.ts -------------------------------------------------------------------------------- /chakra-ui/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/sandbox.config.json -------------------------------------------------------------------------------- /chakra-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/chakra-ui/tsconfig.json -------------------------------------------------------------------------------- /client-only-components/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /client-only-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/client-only-components/README.md -------------------------------------------------------------------------------- /client-side-validation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/client-side-validation/.gitignore -------------------------------------------------------------------------------- /client-side-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/client-side-validation/README.md -------------------------------------------------------------------------------- /collected-notes/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/.env.example -------------------------------------------------------------------------------- /collected-notes/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/.eslintrc.js -------------------------------------------------------------------------------- /collected-notes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/.gitignore -------------------------------------------------------------------------------- /collected-notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/README.md -------------------------------------------------------------------------------- /collected-notes/app/cn.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/app/cn.server.ts -------------------------------------------------------------------------------- /collected-notes/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/app/root.tsx -------------------------------------------------------------------------------- /collected-notes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/package.json -------------------------------------------------------------------------------- /collected-notes/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/public/favicon.ico -------------------------------------------------------------------------------- /collected-notes/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/remix.config.js -------------------------------------------------------------------------------- /collected-notes/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/remix.env.d.ts -------------------------------------------------------------------------------- /collected-notes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/collected-notes/tsconfig.json -------------------------------------------------------------------------------- /combobox-resource-route/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/combobox-resource-route/.gitignore -------------------------------------------------------------------------------- /combobox-resource-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/combobox-resource-route/README.md -------------------------------------------------------------------------------- /dark-mode/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/.eslintrc.cjs -------------------------------------------------------------------------------- /dark-mode/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /dark-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/README.md -------------------------------------------------------------------------------- /dark-mode/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/app/root.tsx -------------------------------------------------------------------------------- /dark-mode/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/app/routes/_index.tsx -------------------------------------------------------------------------------- /dark-mode/app/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/app/styles/styles.css -------------------------------------------------------------------------------- /dark-mode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/package.json -------------------------------------------------------------------------------- /dark-mode/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/public/favicon.ico -------------------------------------------------------------------------------- /dark-mode/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/sandbox.config.json -------------------------------------------------------------------------------- /dark-mode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/tsconfig.json -------------------------------------------------------------------------------- /dark-mode/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dark-mode/vite.config.ts -------------------------------------------------------------------------------- /dataloader/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/.eslintrc.js -------------------------------------------------------------------------------- /dataloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/.gitignore -------------------------------------------------------------------------------- /dataloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/README.md -------------------------------------------------------------------------------- /dataloader/app/data.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/app/data.server.ts -------------------------------------------------------------------------------- /dataloader/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/app/root.tsx -------------------------------------------------------------------------------- /dataloader/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/app/routes/_index.tsx -------------------------------------------------------------------------------- /dataloader/app/routes/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/app/routes/users.tsx -------------------------------------------------------------------------------- /dataloader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/package.json -------------------------------------------------------------------------------- /dataloader/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/public/favicon.ico -------------------------------------------------------------------------------- /dataloader/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/remix.config.js -------------------------------------------------------------------------------- /dataloader/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/remix.env.d.ts -------------------------------------------------------------------------------- /dataloader/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/sandbox.config.json -------------------------------------------------------------------------------- /dataloader/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/server/index.ts -------------------------------------------------------------------------------- /dataloader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/dataloader/tsconfig.json -------------------------------------------------------------------------------- /docker-with-yarn-pnp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/.dockerignore -------------------------------------------------------------------------------- /docker-with-yarn-pnp/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/.eslintrc.js -------------------------------------------------------------------------------- /docker-with-yarn-pnp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/.gitignore -------------------------------------------------------------------------------- /docker-with-yarn-pnp/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/.yarnrc.yml -------------------------------------------------------------------------------- /docker-with-yarn-pnp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/Dockerfile -------------------------------------------------------------------------------- /docker-with-yarn-pnp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/README.md -------------------------------------------------------------------------------- /docker-with-yarn-pnp/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/app/root.tsx -------------------------------------------------------------------------------- /docker-with-yarn-pnp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/package.json -------------------------------------------------------------------------------- /docker-with-yarn-pnp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/docker-with-yarn-pnp/tsconfig.json -------------------------------------------------------------------------------- /emotion/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/.eslintrc.js -------------------------------------------------------------------------------- /emotion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/.gitignore -------------------------------------------------------------------------------- /emotion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/README.md -------------------------------------------------------------------------------- /emotion/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/app/entry.client.tsx -------------------------------------------------------------------------------- /emotion/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/app/entry.server.tsx -------------------------------------------------------------------------------- /emotion/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/app/root.tsx -------------------------------------------------------------------------------- /emotion/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/app/routes/_index.tsx -------------------------------------------------------------------------------- /emotion/app/routes/jokes-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/app/routes/jokes-error.tsx -------------------------------------------------------------------------------- /emotion/app/routes/jokes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/app/routes/jokes.tsx -------------------------------------------------------------------------------- /emotion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/package.json -------------------------------------------------------------------------------- /emotion/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/public/favicon.ico -------------------------------------------------------------------------------- /emotion/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/remix.config.js -------------------------------------------------------------------------------- /emotion/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/remix.env.d.ts -------------------------------------------------------------------------------- /emotion/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/sandbox.config.json -------------------------------------------------------------------------------- /emotion/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/emotion/tsconfig.json -------------------------------------------------------------------------------- /error-boundary/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/.eslintrc.cjs -------------------------------------------------------------------------------- /error-boundary/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /error-boundary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/README.md -------------------------------------------------------------------------------- /error-boundary/app/data.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/app/data.server.ts -------------------------------------------------------------------------------- /error-boundary/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/app/root.tsx -------------------------------------------------------------------------------- /error-boundary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/package.json -------------------------------------------------------------------------------- /error-boundary/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/public/favicon.ico -------------------------------------------------------------------------------- /error-boundary/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/sandbox.config.json -------------------------------------------------------------------------------- /error-boundary/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/tsconfig.json -------------------------------------------------------------------------------- /error-boundary/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/error-boundary/vite.config.ts -------------------------------------------------------------------------------- /file-and-s3-upload/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/.env.sample -------------------------------------------------------------------------------- /file-and-s3-upload/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/.eslintrc.js -------------------------------------------------------------------------------- /file-and-s3-upload/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/.gitignore -------------------------------------------------------------------------------- /file-and-s3-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/README.md -------------------------------------------------------------------------------- /file-and-s3-upload/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/app/root.tsx -------------------------------------------------------------------------------- /file-and-s3-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/package.json -------------------------------------------------------------------------------- /file-and-s3-upload/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/remix.config.js -------------------------------------------------------------------------------- /file-and-s3-upload/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/remix.env.d.ts -------------------------------------------------------------------------------- /file-and-s3-upload/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/file-and-s3-upload/tsconfig.json -------------------------------------------------------------------------------- /firebase/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/.env.example -------------------------------------------------------------------------------- /firebase/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/.eslintrc.js -------------------------------------------------------------------------------- /firebase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/.gitignore -------------------------------------------------------------------------------- /firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/README.md -------------------------------------------------------------------------------- /firebase/app/firebase-rest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/firebase-rest.ts -------------------------------------------------------------------------------- /firebase/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/root.tsx -------------------------------------------------------------------------------- /firebase/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/routes/_index.tsx -------------------------------------------------------------------------------- /firebase/app/routes/join.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/routes/join.tsx -------------------------------------------------------------------------------- /firebase/app/routes/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/routes/login.tsx -------------------------------------------------------------------------------- /firebase/app/routes/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/routes/logout.tsx -------------------------------------------------------------------------------- /firebase/app/server/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/server/auth.server.ts -------------------------------------------------------------------------------- /firebase/app/server/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/server/db.server.ts -------------------------------------------------------------------------------- /firebase/app/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/app/sessions.ts -------------------------------------------------------------------------------- /firebase/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/firebase.json -------------------------------------------------------------------------------- /firebase/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/functions.yaml -------------------------------------------------------------------------------- /firebase/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/functions/index.js -------------------------------------------------------------------------------- /firebase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/package.json -------------------------------------------------------------------------------- /firebase/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/public/favicon.ico -------------------------------------------------------------------------------- /firebase/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/remix.config.js -------------------------------------------------------------------------------- /firebase/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/remix.env.d.ts -------------------------------------------------------------------------------- /firebase/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/sandbox.config.json -------------------------------------------------------------------------------- /firebase/screen_recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/screen_recording.gif -------------------------------------------------------------------------------- /firebase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/firebase/tsconfig.json -------------------------------------------------------------------------------- /form-to-notion-db/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/.env.example -------------------------------------------------------------------------------- /form-to-notion-db/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/.eslintrc.js -------------------------------------------------------------------------------- /form-to-notion-db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/.gitignore -------------------------------------------------------------------------------- /form-to-notion-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/README.md -------------------------------------------------------------------------------- /form-to-notion-db/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/app/root.tsx -------------------------------------------------------------------------------- /form-to-notion-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/package.json -------------------------------------------------------------------------------- /form-to-notion-db/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/remix.config.js -------------------------------------------------------------------------------- /form-to-notion-db/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/remix.env.d.ts -------------------------------------------------------------------------------- /form-to-notion-db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/form-to-notion-db/tsconfig.json -------------------------------------------------------------------------------- /framer-motion/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/.eslintrc.js -------------------------------------------------------------------------------- /framer-motion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/.gitignore -------------------------------------------------------------------------------- /framer-motion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/README.md -------------------------------------------------------------------------------- /framer-motion/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/app/root.tsx -------------------------------------------------------------------------------- /framer-motion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/package.json -------------------------------------------------------------------------------- /framer-motion/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/public/favicon.ico -------------------------------------------------------------------------------- /framer-motion/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/remix.config.js -------------------------------------------------------------------------------- /framer-motion/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/sandbox.config.json -------------------------------------------------------------------------------- /framer-motion/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-motion/tsconfig.json -------------------------------------------------------------------------------- /framer-route-animation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-route-animation/.gitignore -------------------------------------------------------------------------------- /framer-route-animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/framer-route-animation/README.md -------------------------------------------------------------------------------- /gdpr-cookie-consent/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/gdpr-cookie-consent/.eslintrc.cjs -------------------------------------------------------------------------------- /gdpr-cookie-consent/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /gdpr-cookie-consent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/gdpr-cookie-consent/README.md -------------------------------------------------------------------------------- /gdpr-cookie-consent/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/gdpr-cookie-consent/app/root.tsx -------------------------------------------------------------------------------- /gdpr-cookie-consent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/gdpr-cookie-consent/package.json -------------------------------------------------------------------------------- /gdpr-cookie-consent/public/dummy-analytics-script.js: -------------------------------------------------------------------------------- 1 | console.log("tracking user data"); 2 | -------------------------------------------------------------------------------- /gdpr-cookie-consent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/gdpr-cookie-consent/tsconfig.json -------------------------------------------------------------------------------- /gdpr-cookie-consent/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/gdpr-cookie-consent/vite.config.ts -------------------------------------------------------------------------------- /google-analytics/.env.example: -------------------------------------------------------------------------------- 1 | GA_TRACKING_ID=Your google analytics id goes here. -------------------------------------------------------------------------------- /google-analytics/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/google-analytics/.eslintrc.cjs -------------------------------------------------------------------------------- /google-analytics/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /google-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/google-analytics/README.md -------------------------------------------------------------------------------- /google-analytics/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/google-analytics/app/root.tsx -------------------------------------------------------------------------------- /google-analytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/google-analytics/package.json -------------------------------------------------------------------------------- /google-analytics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/google-analytics/tsconfig.json -------------------------------------------------------------------------------- /google-analytics/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/google-analytics/vite.config.ts -------------------------------------------------------------------------------- /graphql-api/.env.example: -------------------------------------------------------------------------------- 1 | GRAPHQL_API="https://rickandmortyapi.com/graphql" -------------------------------------------------------------------------------- /graphql-api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/.eslintrc.js -------------------------------------------------------------------------------- /graphql-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/.gitignore -------------------------------------------------------------------------------- /graphql-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/README.md -------------------------------------------------------------------------------- /graphql-api/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/app/root.tsx -------------------------------------------------------------------------------- /graphql-api/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/app/routes/_index.tsx -------------------------------------------------------------------------------- /graphql-api/app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/app/utils/index.ts -------------------------------------------------------------------------------- /graphql-api/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/codegen.yml -------------------------------------------------------------------------------- /graphql-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/package.json -------------------------------------------------------------------------------- /graphql-api/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/public/favicon.ico -------------------------------------------------------------------------------- /graphql-api/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/remix.config.js -------------------------------------------------------------------------------- /graphql-api/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/remix.env.d.ts -------------------------------------------------------------------------------- /graphql-api/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/sandbox.config.json -------------------------------------------------------------------------------- /graphql-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/graphql-api/tsconfig.json -------------------------------------------------------------------------------- /image-resize/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/.eslintrc.cjs -------------------------------------------------------------------------------- /image-resize/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /image-resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/README.md -------------------------------------------------------------------------------- /image-resize/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/app/root.tsx -------------------------------------------------------------------------------- /image-resize/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/app/routes/_index.tsx -------------------------------------------------------------------------------- /image-resize/assets/dog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/assets/dog-1.jpg -------------------------------------------------------------------------------- /image-resize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/package.json -------------------------------------------------------------------------------- /image-resize/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/public/favicon.ico -------------------------------------------------------------------------------- /image-resize/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/sandbox.config.json -------------------------------------------------------------------------------- /image-resize/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/tsconfig.json -------------------------------------------------------------------------------- /image-resize/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/image-resize/vite.config.ts -------------------------------------------------------------------------------- /infinite-scrolling/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/.eslintrc.js -------------------------------------------------------------------------------- /infinite-scrolling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/.gitignore -------------------------------------------------------------------------------- /infinite-scrolling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/README.md -------------------------------------------------------------------------------- /infinite-scrolling/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/app/root.tsx -------------------------------------------------------------------------------- /infinite-scrolling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/package.json -------------------------------------------------------------------------------- /infinite-scrolling/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/remix.config.js -------------------------------------------------------------------------------- /infinite-scrolling/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/remix.env.d.ts -------------------------------------------------------------------------------- /infinite-scrolling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/infinite-scrolling/tsconfig.json -------------------------------------------------------------------------------- /io-ts-formdata-decoding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/io-ts-formdata-decoding/.gitignore -------------------------------------------------------------------------------- /io-ts-formdata-decoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/io-ts-formdata-decoding/README.md -------------------------------------------------------------------------------- /ioredis/.env.example: -------------------------------------------------------------------------------- 1 | REDIS_URL=redis://localhost:6379 2 | -------------------------------------------------------------------------------- /ioredis/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/.eslintrc.js -------------------------------------------------------------------------------- /ioredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/.gitignore -------------------------------------------------------------------------------- /ioredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/README.md -------------------------------------------------------------------------------- /ioredis/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/app/root.tsx -------------------------------------------------------------------------------- /ioredis/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/app/routes/_index.tsx -------------------------------------------------------------------------------- /ioredis/app/utils/redis.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/app/utils/redis.server.ts -------------------------------------------------------------------------------- /ioredis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/package.json -------------------------------------------------------------------------------- /ioredis/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/public/favicon.ico -------------------------------------------------------------------------------- /ioredis/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/remix.config.js -------------------------------------------------------------------------------- /ioredis/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/remix.env.d.ts -------------------------------------------------------------------------------- /ioredis/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/sandbox.config.json -------------------------------------------------------------------------------- /ioredis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/ioredis/tsconfig.json -------------------------------------------------------------------------------- /leaflet/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/.eslintrc.cjs -------------------------------------------------------------------------------- /leaflet/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /leaflet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/README.md -------------------------------------------------------------------------------- /leaflet/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/app/root.tsx -------------------------------------------------------------------------------- /leaflet/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/app/routes/_index.tsx -------------------------------------------------------------------------------- /leaflet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/package.json -------------------------------------------------------------------------------- /leaflet/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/public/favicon.ico -------------------------------------------------------------------------------- /leaflet/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/sandbox.config.json -------------------------------------------------------------------------------- /leaflet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/tsconfig.json -------------------------------------------------------------------------------- /leaflet/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/leaflet/vite.config.ts -------------------------------------------------------------------------------- /mantine/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/.eslintrc.js -------------------------------------------------------------------------------- /mantine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/.gitignore -------------------------------------------------------------------------------- /mantine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/README.md -------------------------------------------------------------------------------- /mantine/app/clientStyleContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/app/clientStyleContext.tsx -------------------------------------------------------------------------------- /mantine/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/app/entry.client.tsx -------------------------------------------------------------------------------- /mantine/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/app/entry.server.tsx -------------------------------------------------------------------------------- /mantine/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/app/root.tsx -------------------------------------------------------------------------------- /mantine/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/app/routes/_index.tsx -------------------------------------------------------------------------------- /mantine/app/routes/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/app/routes/error.tsx -------------------------------------------------------------------------------- /mantine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/package.json -------------------------------------------------------------------------------- /mantine/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/public/favicon.ico -------------------------------------------------------------------------------- /mantine/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/remix.config.js -------------------------------------------------------------------------------- /mantine/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/remix.env.d.ts -------------------------------------------------------------------------------- /mantine/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/sandbox.config.json -------------------------------------------------------------------------------- /mantine/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mantine/tsconfig.json -------------------------------------------------------------------------------- /msw/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/.eslintrc.cjs -------------------------------------------------------------------------------- /msw/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /msw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/README.md -------------------------------------------------------------------------------- /msw/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/app/root.tsx -------------------------------------------------------------------------------- /msw/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/app/routes/_index.tsx -------------------------------------------------------------------------------- /msw/mocks/handlers.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/mocks/handlers.cjs -------------------------------------------------------------------------------- /msw/mocks/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/mocks/index.cjs -------------------------------------------------------------------------------- /msw/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/package.json -------------------------------------------------------------------------------- /msw/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/public/favicon.ico -------------------------------------------------------------------------------- /msw/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/sandbox.config.json -------------------------------------------------------------------------------- /msw/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/tsconfig.json -------------------------------------------------------------------------------- /msw/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/msw/vite.config.ts -------------------------------------------------------------------------------- /multiple-forms/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/.eslintrc.js -------------------------------------------------------------------------------- /multiple-forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/.gitignore -------------------------------------------------------------------------------- /multiple-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/README.md -------------------------------------------------------------------------------- /multiple-forms/app/data.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/app/data.server.ts -------------------------------------------------------------------------------- /multiple-forms/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/app/root.tsx -------------------------------------------------------------------------------- /multiple-forms/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/data.json -------------------------------------------------------------------------------- /multiple-forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/package.json -------------------------------------------------------------------------------- /multiple-forms/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/public/favicon.ico -------------------------------------------------------------------------------- /multiple-forms/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/remix.config.js -------------------------------------------------------------------------------- /multiple-forms/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/remix.env.d.ts -------------------------------------------------------------------------------- /multiple-forms/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/sandbox.config.json -------------------------------------------------------------------------------- /multiple-forms/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-forms/tsconfig.json -------------------------------------------------------------------------------- /multiple-params/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/.eslintrc.js -------------------------------------------------------------------------------- /multiple-params/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/.gitignore -------------------------------------------------------------------------------- /multiple-params/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/README.md -------------------------------------------------------------------------------- /multiple-params/app/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/app/db.ts -------------------------------------------------------------------------------- /multiple-params/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/app/root.tsx -------------------------------------------------------------------------------- /multiple-params/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/package.json -------------------------------------------------------------------------------- /multiple-params/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/public/favicon.ico -------------------------------------------------------------------------------- /multiple-params/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/remix.config.js -------------------------------------------------------------------------------- /multiple-params/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/remix.env.d.ts -------------------------------------------------------------------------------- /multiple-params/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/multiple-params/tsconfig.json -------------------------------------------------------------------------------- /mux-video/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/.env.example -------------------------------------------------------------------------------- /mux-video/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/.eslintrc.cjs -------------------------------------------------------------------------------- /mux-video/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /mux-video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/README.md -------------------------------------------------------------------------------- /mux-video/app/lib/mux.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/app/lib/mux.server.ts -------------------------------------------------------------------------------- /mux-video/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/app/root.tsx -------------------------------------------------------------------------------- /mux-video/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/app/routes/_index.tsx -------------------------------------------------------------------------------- /mux-video/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/package.json -------------------------------------------------------------------------------- /mux-video/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/public/favicon.ico -------------------------------------------------------------------------------- /mux-video/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/sandbox.config.json -------------------------------------------------------------------------------- /mux-video/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/tsconfig.json -------------------------------------------------------------------------------- /mux-video/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/mux-video/vite.config.ts -------------------------------------------------------------------------------- /newsletter-signup/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/.eslintrc.js -------------------------------------------------------------------------------- /newsletter-signup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/.gitignore -------------------------------------------------------------------------------- /newsletter-signup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/README.md -------------------------------------------------------------------------------- /newsletter-signup/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/app/root.tsx -------------------------------------------------------------------------------- /newsletter-signup/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/app/styles.css -------------------------------------------------------------------------------- /newsletter-signup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/package.json -------------------------------------------------------------------------------- /newsletter-signup/public/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/public/bg.svg -------------------------------------------------------------------------------- /newsletter-signup/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/remix.config.js -------------------------------------------------------------------------------- /newsletter-signup/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/remix.env.d.ts -------------------------------------------------------------------------------- /newsletter-signup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/newsletter-signup/tsconfig.json -------------------------------------------------------------------------------- /nprogress/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/.eslintrc.cjs -------------------------------------------------------------------------------- /nprogress/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /nprogress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/README.md -------------------------------------------------------------------------------- /nprogress/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/app/root.tsx -------------------------------------------------------------------------------- /nprogress/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/app/routes/_index.tsx -------------------------------------------------------------------------------- /nprogress/app/routes/slow-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/app/routes/slow-page.tsx -------------------------------------------------------------------------------- /nprogress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/package.json -------------------------------------------------------------------------------- /nprogress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/public/favicon.ico -------------------------------------------------------------------------------- /nprogress/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/sandbox.config.json -------------------------------------------------------------------------------- /nprogress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/tsconfig.json -------------------------------------------------------------------------------- /nprogress/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/nprogress/vite.config.ts -------------------------------------------------------------------------------- /on-demand-hydration/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/.eslintrc.js -------------------------------------------------------------------------------- /on-demand-hydration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/.gitignore -------------------------------------------------------------------------------- /on-demand-hydration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/README.md -------------------------------------------------------------------------------- /on-demand-hydration/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/app/root.tsx -------------------------------------------------------------------------------- /on-demand-hydration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/package.json -------------------------------------------------------------------------------- /on-demand-hydration/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/remix.env.d.ts -------------------------------------------------------------------------------- /on-demand-hydration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/on-demand-hydration/tsconfig.json -------------------------------------------------------------------------------- /outlet-form-rerender/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/outlet-form-rerender/.eslintrc.js -------------------------------------------------------------------------------- /outlet-form-rerender/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/outlet-form-rerender/.gitignore -------------------------------------------------------------------------------- /outlet-form-rerender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/outlet-form-rerender/README.md -------------------------------------------------------------------------------- /outlet-form-rerender/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/outlet-form-rerender/app/root.tsx -------------------------------------------------------------------------------- /outlet-form-rerender/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/outlet-form-rerender/package.json -------------------------------------------------------------------------------- /outlet-form-rerender/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/outlet-form-rerender/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/package.json -------------------------------------------------------------------------------- /pathless-routes/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/.eslintrc.js -------------------------------------------------------------------------------- /pathless-routes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/.gitignore -------------------------------------------------------------------------------- /pathless-routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/README.md -------------------------------------------------------------------------------- /pathless-routes/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/app/root.tsx -------------------------------------------------------------------------------- /pathless-routes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/package.json -------------------------------------------------------------------------------- /pathless-routes/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/public/favicon.ico -------------------------------------------------------------------------------- /pathless-routes/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/remix.config.js -------------------------------------------------------------------------------- /pathless-routes/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/remix.env.d.ts -------------------------------------------------------------------------------- /pathless-routes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pathless-routes/tsconfig.json -------------------------------------------------------------------------------- /picocss/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/.eslintrc.js -------------------------------------------------------------------------------- /picocss/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/.gitignore -------------------------------------------------------------------------------- /picocss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/README.md -------------------------------------------------------------------------------- /picocss/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/app/root.tsx -------------------------------------------------------------------------------- /picocss/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/app/routes/_index.tsx -------------------------------------------------------------------------------- /picocss/app/routes/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/app/routes/examples.tsx -------------------------------------------------------------------------------- /picocss/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/app/styles.css -------------------------------------------------------------------------------- /picocss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/package.json -------------------------------------------------------------------------------- /picocss/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/public/favicon.ico -------------------------------------------------------------------------------- /picocss/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/remix.config.js -------------------------------------------------------------------------------- /picocss/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/remix.env.d.ts -------------------------------------------------------------------------------- /picocss/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/sandbox.config.json -------------------------------------------------------------------------------- /picocss/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/picocss/tsconfig.json -------------------------------------------------------------------------------- /playwright/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/.eslintrc.cjs -------------------------------------------------------------------------------- /playwright/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/.gitignore -------------------------------------------------------------------------------- /playwright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/README.md -------------------------------------------------------------------------------- /playwright/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/app/root.tsx -------------------------------------------------------------------------------- /playwright/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/app/routes/_index.tsx -------------------------------------------------------------------------------- /playwright/app/routes/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/app/routes/login.tsx -------------------------------------------------------------------------------- /playwright/e2e/page.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/e2e/page.spec.tsx -------------------------------------------------------------------------------- /playwright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/package.json -------------------------------------------------------------------------------- /playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/playwright.config.ts -------------------------------------------------------------------------------- /playwright/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/public/favicon.ico -------------------------------------------------------------------------------- /playwright/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/sandbox.config.json -------------------------------------------------------------------------------- /playwright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/tsconfig.json -------------------------------------------------------------------------------- /playwright/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/playwright/vite.config.ts -------------------------------------------------------------------------------- /pm-app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/.env.example -------------------------------------------------------------------------------- /pm-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/.eslintrc.js -------------------------------------------------------------------------------- /pm-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/.gitignore -------------------------------------------------------------------------------- /pm-app/.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /pm-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/README.md -------------------------------------------------------------------------------- /pm-app/app/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/auth.server.ts -------------------------------------------------------------------------------- /pm-app/app/db.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/db.server.tsx -------------------------------------------------------------------------------- /pm-app/app/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/models.ts -------------------------------------------------------------------------------- /pm-app/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/root.tsx -------------------------------------------------------------------------------- /pm-app/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/routes/_index.tsx -------------------------------------------------------------------------------- /pm-app/app/routes/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/routes/dashboard.tsx -------------------------------------------------------------------------------- /pm-app/app/routes/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/routes/register.tsx -------------------------------------------------------------------------------- /pm-app/app/routes/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/routes/sign-in.tsx -------------------------------------------------------------------------------- /pm-app/app/routes/sign-out.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/routes/sign-out.tsx -------------------------------------------------------------------------------- /pm-app/app/session.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/session.server.ts -------------------------------------------------------------------------------- /pm-app/app/styles/_defs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/_defs.css -------------------------------------------------------------------------------- /pm-app/app/styles/_normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/_normalize.css -------------------------------------------------------------------------------- /pm-app/app/styles/_resets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/_resets.css -------------------------------------------------------------------------------- /pm-app/app/styles/_root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/_root.css -------------------------------------------------------------------------------- /pm-app/app/styles/_utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/_utils.css -------------------------------------------------------------------------------- /pm-app/app/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/global.css -------------------------------------------------------------------------------- /pm-app/app/styles/routes/index.css: -------------------------------------------------------------------------------- 1 | @import "../_defs.css"; 2 | 3 | div { 4 | } 5 | -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_avatar.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_button.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_combobox.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_dialog.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_flex.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_form.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_menu-button.css: -------------------------------------------------------------------------------- 1 | .ui--menu-button { 2 | } 3 | -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_note.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_stack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_stack.css -------------------------------------------------------------------------------- /pm-app/app/styles/ui/_token.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/styles/ui/_token.css -------------------------------------------------------------------------------- /pm-app/app/ui/auth-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/auth-header.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/avatar.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/button.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/combobox.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/dialog.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/flex.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/form.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/icon-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/icon-box.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/icons.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/link.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/max-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/max-container.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/member-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/member-search.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/note.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/section-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/section-heading.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/shadow-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/shadow-box.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/stack.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/todo-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/todo-list.tsx -------------------------------------------------------------------------------- /pm-app/app/ui/token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/ui/token.tsx -------------------------------------------------------------------------------- /pm-app/app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/utils/index.ts -------------------------------------------------------------------------------- /pm-app/app/utils/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/utils/react.tsx -------------------------------------------------------------------------------- /pm-app/app/utils/sanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/utils/sanitizer.ts -------------------------------------------------------------------------------- /pm-app/app/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/utils/types.ts -------------------------------------------------------------------------------- /pm-app/app/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/app/utils/validation.ts -------------------------------------------------------------------------------- /pm-app/docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/docker-compose.example.yml -------------------------------------------------------------------------------- /pm-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/package.json -------------------------------------------------------------------------------- /pm-app/pm2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/pm2.config.js -------------------------------------------------------------------------------- /pm-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/postcss.config.js -------------------------------------------------------------------------------- /pm-app/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/prisma/schema.prisma -------------------------------------------------------------------------------- /pm-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/public/favicon.ico -------------------------------------------------------------------------------- /pm-app/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/remix.config.js -------------------------------------------------------------------------------- /pm-app/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/remix.env.d.ts -------------------------------------------------------------------------------- /pm-app/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/sandbox.config.json -------------------------------------------------------------------------------- /pm-app/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/server/index.js -------------------------------------------------------------------------------- /pm-app/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/server/tsconfig.json -------------------------------------------------------------------------------- /pm-app/server/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/server/utils.js -------------------------------------------------------------------------------- /pm-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/tsconfig.json -------------------------------------------------------------------------------- /pm-app/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/pm-app/typings/global.d.ts -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('prettier').Options} */ 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /quirrel/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/.eslintrc.cjs -------------------------------------------------------------------------------- /quirrel/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /quirrel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/README.md -------------------------------------------------------------------------------- /quirrel/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/app/root.tsx -------------------------------------------------------------------------------- /quirrel/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/app/routes/_index.tsx -------------------------------------------------------------------------------- /quirrel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/package.json -------------------------------------------------------------------------------- /quirrel/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/public/favicon.ico -------------------------------------------------------------------------------- /quirrel/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/sandbox.config.json -------------------------------------------------------------------------------- /quirrel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/tsconfig.json -------------------------------------------------------------------------------- /quirrel/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/quirrel/vite.config.ts -------------------------------------------------------------------------------- /react-quill/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/.eslintrc.cjs -------------------------------------------------------------------------------- /react-quill/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /react-quill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/README.md -------------------------------------------------------------------------------- /react-quill/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/app/root.tsx -------------------------------------------------------------------------------- /react-quill/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/app/routes/_index.tsx -------------------------------------------------------------------------------- /react-quill/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/package.json -------------------------------------------------------------------------------- /react-quill/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/public/favicon.ico -------------------------------------------------------------------------------- /react-quill/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/sandbox.config.json -------------------------------------------------------------------------------- /react-quill/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/tsconfig.json -------------------------------------------------------------------------------- /react-quill/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-quill/vite.config.ts -------------------------------------------------------------------------------- /react-spring/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/.eslintrc.js -------------------------------------------------------------------------------- /react-spring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/.gitignore -------------------------------------------------------------------------------- /react-spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/README.md -------------------------------------------------------------------------------- /react-spring/app/no-script.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/app/no-script.css -------------------------------------------------------------------------------- /react-spring/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/app/root.tsx -------------------------------------------------------------------------------- /react-spring/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/app/routes/_index.tsx -------------------------------------------------------------------------------- /react-spring/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/app/styles.css -------------------------------------------------------------------------------- /react-spring/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/package.json -------------------------------------------------------------------------------- /react-spring/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/public/favicon.ico -------------------------------------------------------------------------------- /react-spring/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/remix.config.js -------------------------------------------------------------------------------- /react-spring/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/remix.env.d.ts -------------------------------------------------------------------------------- /react-spring/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/sandbox.config.json -------------------------------------------------------------------------------- /react-spring/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/react-spring/tsconfig.json -------------------------------------------------------------------------------- /redis-upstash-session/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/redis-upstash-session/.env.example -------------------------------------------------------------------------------- /redis-upstash-session/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/redis-upstash-session/.eslintrc.js -------------------------------------------------------------------------------- /redis-upstash-session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/redis-upstash-session/.gitignore -------------------------------------------------------------------------------- /redis-upstash-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/redis-upstash-session/README.md -------------------------------------------------------------------------------- /redis-upstash-session/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/redis-upstash-session/app/root.tsx -------------------------------------------------------------------------------- /redis-upstash-session/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/redis-upstash-session/package.json -------------------------------------------------------------------------------- /remix-auth-auth0/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/.env.example -------------------------------------------------------------------------------- /remix-auth-auth0/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/.eslintrc.js -------------------------------------------------------------------------------- /remix-auth-auth0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/.gitignore -------------------------------------------------------------------------------- /remix-auth-auth0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/README.md -------------------------------------------------------------------------------- /remix-auth-auth0/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/app/root.tsx -------------------------------------------------------------------------------- /remix-auth-auth0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/package.json -------------------------------------------------------------------------------- /remix-auth-auth0/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/remix.config.js -------------------------------------------------------------------------------- /remix-auth-auth0/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/remix.env.d.ts -------------------------------------------------------------------------------- /remix-auth-auth0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-auth0/tsconfig.json -------------------------------------------------------------------------------- /remix-auth-form/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/.eslintrc.cjs -------------------------------------------------------------------------------- /remix-auth-form/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /remix-auth-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/README.md -------------------------------------------------------------------------------- /remix-auth-form/app/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/app/auth.server.ts -------------------------------------------------------------------------------- /remix-auth-form/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/app/root.tsx -------------------------------------------------------------------------------- /remix-auth-form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/package.json -------------------------------------------------------------------------------- /remix-auth-form/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/public/favicon.ico -------------------------------------------------------------------------------- /remix-auth-form/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/tsconfig.json -------------------------------------------------------------------------------- /remix-auth-form/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-form/vite.config.ts -------------------------------------------------------------------------------- /remix-auth-github/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/.env.example -------------------------------------------------------------------------------- /remix-auth-github/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/.eslintrc.js -------------------------------------------------------------------------------- /remix-auth-github/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/.gitignore -------------------------------------------------------------------------------- /remix-auth-github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/README.md -------------------------------------------------------------------------------- /remix-auth-github/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/app/root.tsx -------------------------------------------------------------------------------- /remix-auth-github/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/package.json -------------------------------------------------------------------------------- /remix-auth-github/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/remix.config.js -------------------------------------------------------------------------------- /remix-auth-github/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/remix.env.d.ts -------------------------------------------------------------------------------- /remix-auth-github/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-github/tsconfig.json -------------------------------------------------------------------------------- /remix-auth-supabase/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/.env.example -------------------------------------------------------------------------------- /remix-auth-supabase/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/.eslintrc.js -------------------------------------------------------------------------------- /remix-auth-supabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/.gitignore -------------------------------------------------------------------------------- /remix-auth-supabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/README.md -------------------------------------------------------------------------------- /remix-auth-supabase/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/app/root.tsx -------------------------------------------------------------------------------- /remix-auth-supabase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/package.json -------------------------------------------------------------------------------- /remix-auth-supabase/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/remix.env.d.ts -------------------------------------------------------------------------------- /remix-auth-supabase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/remix-auth-supabase/tsconfig.json -------------------------------------------------------------------------------- /route-modal/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/.eslintrc.js -------------------------------------------------------------------------------- /route-modal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/.gitignore -------------------------------------------------------------------------------- /route-modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/README.md -------------------------------------------------------------------------------- /route-modal/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/app/root.tsx -------------------------------------------------------------------------------- /route-modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/package.json -------------------------------------------------------------------------------- /route-modal/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/public/favicon.ico -------------------------------------------------------------------------------- /route-modal/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/remix.config.js -------------------------------------------------------------------------------- /route-modal/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/remix.env.d.ts -------------------------------------------------------------------------------- /route-modal/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/sandbox.config.json -------------------------------------------------------------------------------- /route-modal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/route-modal/tsconfig.json -------------------------------------------------------------------------------- /routes-gen/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/.eslintrc.js -------------------------------------------------------------------------------- /routes-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/.gitignore -------------------------------------------------------------------------------- /routes-gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/README.md -------------------------------------------------------------------------------- /routes-gen/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/app/root.tsx -------------------------------------------------------------------------------- /routes-gen/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/app/routes/_index.tsx -------------------------------------------------------------------------------- /routes-gen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/package.json -------------------------------------------------------------------------------- /routes-gen/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/public/favicon.ico -------------------------------------------------------------------------------- /routes-gen/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/remix.config.js -------------------------------------------------------------------------------- /routes-gen/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/remix.env.d.ts -------------------------------------------------------------------------------- /routes-gen/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/sandbox.config.json -------------------------------------------------------------------------------- /routes-gen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/routes-gen/tsconfig.json -------------------------------------------------------------------------------- /rust/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/.eslintrc.cjs -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/app/root.tsx -------------------------------------------------------------------------------- /rust/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/app/routes/_index.tsx -------------------------------------------------------------------------------- /rust/app/rust.server.ts: -------------------------------------------------------------------------------- 1 | export { add } from "rust-functions"; 2 | -------------------------------------------------------------------------------- /rust/app/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/app/styles/global.css -------------------------------------------------------------------------------- /rust/app/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/app/styles/index.css -------------------------------------------------------------------------------- /rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/package.json -------------------------------------------------------------------------------- /rust/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/public/favicon.ico -------------------------------------------------------------------------------- /rust/rust-functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/rust-functions/.gitignore -------------------------------------------------------------------------------- /rust/rust-functions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/rust-functions/Cargo.toml -------------------------------------------------------------------------------- /rust/rust-functions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/rust-functions/src/lib.rs -------------------------------------------------------------------------------- /rust/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/sandbox.config.json -------------------------------------------------------------------------------- /rust/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/tsconfig.json -------------------------------------------------------------------------------- /rust/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/rust/vite.config.ts -------------------------------------------------------------------------------- /sanity/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/.env.example -------------------------------------------------------------------------------- /sanity/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/.eslintrc.js -------------------------------------------------------------------------------- /sanity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/.gitignore -------------------------------------------------------------------------------- /sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/README.md -------------------------------------------------------------------------------- /sanity/app/components/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/components/Preview.tsx -------------------------------------------------------------------------------- /sanity/app/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Preview"; 2 | -------------------------------------------------------------------------------- /sanity/app/lib/sanity/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/lib/sanity/config.ts -------------------------------------------------------------------------------- /sanity/app/lib/sanity/getClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/lib/sanity/getClient.ts -------------------------------------------------------------------------------- /sanity/app/lib/sanity/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/lib/sanity/helpers.tsx -------------------------------------------------------------------------------- /sanity/app/lib/sanity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/lib/sanity/index.ts -------------------------------------------------------------------------------- /sanity/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/root.tsx -------------------------------------------------------------------------------- /sanity/app/routes/$slug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/routes/$slug.tsx -------------------------------------------------------------------------------- /sanity/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/routes/_index.tsx -------------------------------------------------------------------------------- /sanity/app/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/app/styles/global.css -------------------------------------------------------------------------------- /sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/package.json -------------------------------------------------------------------------------- /sanity/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/public/favicon.ico -------------------------------------------------------------------------------- /sanity/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/remix.config.js -------------------------------------------------------------------------------- /sanity/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/remix.env.d.ts -------------------------------------------------------------------------------- /sanity/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/sandbox.config.json -------------------------------------------------------------------------------- /sanity/studio/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/.npmignore -------------------------------------------------------------------------------- /sanity/studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/README.md -------------------------------------------------------------------------------- /sanity/studio/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/config/.checksums -------------------------------------------------------------------------------- /sanity/studio/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /sanity/studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/package.json -------------------------------------------------------------------------------- /sanity/studio/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | User-specific packages can be placed here 2 | -------------------------------------------------------------------------------- /sanity/studio/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/sanity.json -------------------------------------------------------------------------------- /sanity/studio/schemas/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/schemas/movie.js -------------------------------------------------------------------------------- /sanity/studio/schemas/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/schemas/person.js -------------------------------------------------------------------------------- /sanity/studio/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/schemas/schema.js -------------------------------------------------------------------------------- /sanity/studio/schemas/screening.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/schemas/screening.js -------------------------------------------------------------------------------- /sanity/studio/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/static/favicon.ico -------------------------------------------------------------------------------- /sanity/studio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/studio/tsconfig.json -------------------------------------------------------------------------------- /sanity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sanity/tsconfig.json -------------------------------------------------------------------------------- /sass/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sass/.eslintrc.cjs -------------------------------------------------------------------------------- /sass/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /sass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sass/README.md -------------------------------------------------------------------------------- /sass/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-run/examples/HEAD/sass/app/root.tsx -------------------------------------------------------------------------------- /sass/app/routes/_index.tsx: -------------------------------------------------------------------------------- 1 | export default function Index() { 2 | return