├── .autorc ├── .claude ├── CLAUDE.md └── settings.json ├── .cursor ├── hooks.json └── rules │ └── ultracite.mdc ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── README.md ├── apps ├── adf-validator │ ├── app │ │ ├── components │ │ │ └── validator.tsx │ │ ├── favicon.ico │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── styles.css │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ └── tsconfig.json ├── api │ ├── .env.example │ ├── app │ │ ├── (data) │ │ │ ├── changelog │ │ │ │ └── route.ts │ │ │ ├── feature │ │ │ │ └── route.ts │ │ │ └── feedback │ │ │ │ └── route.ts │ │ ├── (widget) │ │ │ ├── layout.tsx │ │ │ ├── panel │ │ │ │ └── page.tsx │ │ │ ├── styles.css │ │ │ └── trigger │ │ │ │ └── page.tsx │ │ ├── apple-icon.png │ │ ├── authenticate │ │ │ └── route.ts │ │ ├── cron │ │ │ ├── digest │ │ │ │ └── route.ts │ │ │ └── import │ │ │ │ ├── canny │ │ │ │ ├── index.ts │ │ │ │ ├── migrate-boards.ts │ │ │ │ ├── migrate-categories.ts │ │ │ │ ├── migrate-changelogs.ts │ │ │ │ ├── migrate-comments.ts │ │ │ │ ├── migrate-companies.ts │ │ │ │ ├── migrate-posts.ts │ │ │ │ ├── migrate-status-changes.ts │ │ │ │ ├── migrate-statuses.ts │ │ │ │ ├── migrate-tags.ts │ │ │ │ ├── migrate-users.ts │ │ │ │ └── migrate-votes.ts │ │ │ │ ├── productboard │ │ │ │ ├── index.ts │ │ │ │ ├── migrate-companies.ts │ │ │ │ ├── migrate-components.ts │ │ │ │ ├── migrate-custom-field-values.ts │ │ │ │ ├── migrate-custom-fields.ts │ │ │ │ ├── migrate-domains.ts │ │ │ │ ├── migrate-feature-release-assignments.ts │ │ │ │ ├── migrate-feature-statuses.ts │ │ │ │ ├── migrate-features.ts │ │ │ │ ├── migrate-jira-connections.ts │ │ │ │ ├── migrate-note-connections.ts │ │ │ │ ├── migrate-note-tags.ts │ │ │ │ ├── migrate-notes.ts │ │ │ │ ├── migrate-products.ts │ │ │ │ ├── migrate-releases.ts │ │ │ │ ├── migrate-tags.ts │ │ │ │ └── migrate-users.ts │ │ │ │ └── route.ts │ │ ├── health │ │ │ └── route.ts │ │ ├── icon.png │ │ └── webhooks │ │ │ ├── database │ │ │ ├── features │ │ │ │ └── rice │ │ │ │ │ └── route.ts │ │ │ ├── feedback │ │ │ │ ├── analyze │ │ │ │ │ └── route.ts │ │ │ │ ├── sentiment │ │ │ │ │ └── route.ts │ │ │ │ ├── slack │ │ │ │ │ └── route.ts │ │ │ │ └── transcribe │ │ │ │ │ └── route.ts │ │ │ ├── organization │ │ │ │ └── delete │ │ │ │ │ └── route.ts │ │ │ └── user │ │ │ │ └── upsert │ │ │ │ └── route.ts │ │ │ ├── email │ │ │ └── inbound │ │ │ │ └── route.ts │ │ │ ├── github │ │ │ └── route.ts │ │ │ ├── intercom │ │ │ └── route.ts │ │ │ ├── jira │ │ │ └── [slug] │ │ │ │ └── route.ts │ │ │ ├── linear │ │ │ └── route.ts │ │ │ ├── resend │ │ │ └── route.tsx │ │ │ ├── stripe │ │ │ └── route.ts │ │ │ └── zapier │ │ │ ├── feature │ │ │ └── route.ts │ │ │ └── feedback │ │ │ └── route.ts │ ├── env.ts │ ├── instrumentation-client.ts │ ├── instrumentation.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ └── widget.js │ ├── scripts │ │ └── skip-ci.js │ ├── tsconfig.json │ └── vercel.json ├── app │ ├── .env.example │ ├── actions │ │ ├── activity │ │ │ └── get.ts │ │ ├── api-key │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── atlassian-installation │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── canny-import │ │ │ └── create.ts │ │ ├── changelog-contributor │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── changelog-tag │ │ │ ├── connect.ts │ │ │ ├── create.ts │ │ │ └── disconnect.ts │ │ ├── changelog │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ ├── generate.ts │ │ │ ├── get.ts │ │ │ └── update.ts │ │ ├── example-content │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── skip.ts │ │ ├── feature-connection │ │ │ └── delete.ts │ │ ├── feature-rice │ │ │ └── update.ts │ │ ├── feature-status │ │ │ ├── bulk │ │ │ │ └── update.ts │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── feature │ │ │ ├── bulk │ │ │ │ ├── delete.ts │ │ │ │ └── update.ts │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ ├── get.ts │ │ │ ├── list.ts │ │ │ └── update.ts │ │ ├── feedback-organization │ │ │ ├── create.ts │ │ │ └── list.ts │ │ ├── feedback-user │ │ │ ├── create.ts │ │ │ └── list.ts │ │ ├── feedback │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ ├── get.ts │ │ │ └── update.ts │ │ ├── group │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── initiative-canvas │ │ │ └── update.ts │ │ ├── initiative-file │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── initiative-link │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── initiative-member │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── initiative-page │ │ │ ├── create.ts │ │ │ └── update.ts │ │ ├── initiative-update │ │ │ ├── create.ts │ │ │ ├── generate.ts │ │ │ ├── send.tsx │ │ │ └── update.ts │ │ ├── initiative │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── installation-field-mapping │ │ │ └── jira │ │ │ │ └── update.ts │ │ ├── installation-status-mapping │ │ │ ├── github │ │ │ │ └── create.ts │ │ │ ├── jira │ │ │ │ └── update.ts │ │ │ └── update.ts │ │ ├── intercom-installation │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── linear-installation │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── markdown │ │ │ ├── import.ts │ │ │ └── parse.ts │ │ ├── organization │ │ │ ├── create.ts │ │ │ └── update.ts │ │ ├── portal-feature │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── portal-status-mapping │ │ │ └── update.ts │ │ ├── portal │ │ │ └── create.ts │ │ ├── product │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── productboard-import │ │ │ └── create.ts │ │ ├── release │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── roadmap-event │ │ │ ├── create.ts │ │ │ └── delete.ts │ │ ├── slack-installation │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── test.ts │ │ ├── template │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ ├── users │ │ │ ├── invite.ts │ │ │ ├── remove.ts │ │ │ ├── search.ts │ │ │ └── update.ts │ │ ├── widget-item │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── update.ts │ │ └── widget │ │ │ └── update.ts │ ├── app │ │ ├── (organization) │ │ │ ├── (home) │ │ │ │ ├── components │ │ │ │ │ ├── digest.tsx │ │ │ │ │ └── greeting.tsx │ │ │ │ └── page.tsx │ │ │ ├── activity │ │ │ │ ├── components │ │ │ │ │ ├── activity-day.tsx │ │ │ │ │ ├── activity-feed.tsx │ │ │ │ │ └── activity-item.tsx │ │ │ │ └── page.tsx │ │ │ ├── callbacks │ │ │ │ └── github │ │ │ │ │ └── page.tsx │ │ │ ├── changelog │ │ │ │ ├── [update] │ │ │ │ │ ├── components │ │ │ │ │ │ ├── changelog-contributors-picker.tsx │ │ │ │ │ │ ├── changelog-date-picker.tsx │ │ │ │ │ │ ├── changelog-editor.tsx │ │ │ │ │ │ ├── changelog-settings-dropdown.tsx │ │ │ │ │ │ ├── changelog-sidebar.tsx │ │ │ │ │ │ ├── changelog-slug-input.tsx │ │ │ │ │ │ ├── changelog-status-picker.tsx │ │ │ │ │ │ ├── changelog-tags-picker.tsx │ │ │ │ │ │ ├── changelog-title.tsx │ │ │ │ │ │ └── update-empty-state.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ │ ├── changelog-empty-state.tsx │ │ │ │ │ ├── changelog-list.tsx │ │ │ │ │ └── create-changelog-button.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── company-logo.tsx │ │ │ │ ├── forms.tsx │ │ │ │ ├── global-breadcrumbs.tsx │ │ │ │ ├── navbar.tsx │ │ │ │ ├── organization-list.tsx │ │ │ │ ├── organization-switcher.tsx │ │ │ │ ├── team-subscribe.tsx │ │ │ │ └── team.tsx │ │ │ ├── data │ │ │ │ ├── companies │ │ │ │ │ ├── [company] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── feedback-company-list.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── users │ │ │ │ │ ├── [user] │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── components │ │ │ │ │ └── feedback-user-list.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── features │ │ │ │ ├── (list) │ │ │ │ │ ├── groups │ │ │ │ │ │ └── [group] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── products │ │ │ │ │ │ └── [product] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── search │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── [feature] │ │ │ │ │ ├── (notes) │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── feature-editor.tsx │ │ │ │ │ │ │ ├── feature-template-selector.tsx │ │ │ │ │ │ │ ├── feature-title.tsx │ │ │ │ │ │ │ └── template.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── canvas │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── feature-canvas-loader.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── connect-button.tsx │ │ │ │ │ │ ├── disconnect-button.tsx │ │ │ │ │ │ ├── feature-clear-date-button.tsx │ │ │ │ │ │ ├── feature-clear-release-button.tsx │ │ │ │ │ │ ├── feature-date-range-picker.tsx │ │ │ │ │ │ ├── feature-group-picker.tsx │ │ │ │ │ │ ├── feature-owner-picker.tsx │ │ │ │ │ │ ├── feature-page-tabs.tsx │ │ │ │ │ │ ├── feature-portal-button.tsx │ │ │ │ │ │ ├── feature-product-picker.tsx │ │ │ │ │ │ ├── feature-release-picker.tsx │ │ │ │ │ │ ├── feature-rice-editor.tsx │ │ │ │ │ │ ├── feature-rice-input.tsx │ │ │ │ │ │ ├── feature-rice-popover.tsx │ │ │ │ │ │ ├── feature-rice-score.tsx │ │ │ │ │ │ ├── feature-settings-dropdown.tsx │ │ │ │ │ │ ├── feature-sidebar.tsx │ │ │ │ │ │ ├── feature-status-picker.tsx │ │ │ │ │ │ └── portal-button.tsx │ │ │ │ │ └── layout.tsx │ │ │ │ └── components │ │ │ │ │ ├── feature-create-dropdown.tsx │ │ │ │ │ ├── feature-item.tsx │ │ │ │ │ ├── feature-toolbar-delete-button.tsx │ │ │ │ │ ├── feature-toolbar-move-button.tsx │ │ │ │ │ ├── features-drag-provider.tsx │ │ │ │ │ ├── features-empty-state.tsx │ │ │ │ │ ├── features-list-filter.tsx │ │ │ │ │ ├── features-list.tsx │ │ │ │ │ ├── features-toolbar.tsx │ │ │ │ │ ├── products-list-group.tsx │ │ │ │ │ ├── products-list-item.tsx │ │ │ │ │ ├── products-list-product.tsx │ │ │ │ │ └── products-list.tsx │ │ │ ├── feedback │ │ │ │ ├── [feedback] │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── get-feature-recommendations.ts │ │ │ │ │ │ └── update-feature-feedback-connections.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── feedback-editor.tsx │ │ │ │ │ │ ├── feedback-panel.tsx │ │ │ │ │ │ ├── feedback-settings-dropdown.tsx │ │ │ │ │ │ ├── feedback-title.tsx │ │ │ │ │ │ ├── process-feedback-button.tsx │ │ │ │ │ │ └── triage-menu │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── triage-ai-selector.tsx │ │ │ │ │ │ │ ├── triage-feature-selector.tsx │ │ │ │ │ │ │ └── triage-selected-features.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ │ ├── create-feedback-button.tsx │ │ │ │ │ ├── feedback-empty-state.tsx │ │ │ │ │ ├── feedback-item.tsx │ │ │ │ │ ├── feedback-list.tsx │ │ │ │ │ └── toggle-processed-button.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── initiatives │ │ │ │ ├── [initiative] │ │ │ │ │ ├── [page] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── link-initiative-feature.ts │ │ │ │ │ │ ├── link-initiative-group.ts │ │ │ │ │ │ └── link-initiative-product.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── create-initiative-file-button.tsx │ │ │ │ │ │ ├── create-initiative-link-button.tsx │ │ │ │ │ │ ├── create-initiative-meeting-button.tsx │ │ │ │ │ │ ├── create-initiative-page-button.tsx │ │ │ │ │ │ ├── create-initiative-update-button.tsx │ │ │ │ │ │ ├── delete-external-initiative-link-button.tsx │ │ │ │ │ │ ├── delete-initiative-file-button.tsx │ │ │ │ │ │ ├── initiative-canvas-dropdown.tsx │ │ │ │ │ │ ├── initiative-canvas.tsx │ │ │ │ │ │ ├── initiative-emoji.tsx │ │ │ │ │ │ ├── initiative-external-link-button.tsx │ │ │ │ │ │ ├── initiative-features.tsx │ │ │ │ │ │ ├── initiative-link-dialog.tsx │ │ │ │ │ │ ├── initiative-member-picker.tsx │ │ │ │ │ │ ├── initiative-owner-picker.tsx │ │ │ │ │ │ ├── initiative-page-editor.tsx │ │ │ │ │ │ ├── initiative-page-title.tsx │ │ │ │ │ │ ├── initiative-question-card.tsx │ │ │ │ │ │ ├── initiative-settings-dropdown.tsx │ │ │ │ │ │ ├── initiative-sidebar.tsx │ │ │ │ │ │ ├── initiative-status-picker.tsx │ │ │ │ │ │ ├── initiative-timeline.tsx │ │ │ │ │ │ ├── initiative-title.tsx │ │ │ │ │ │ └── initiative-updates-card.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── updates │ │ │ │ │ │ └── [update] │ │ │ │ │ │ ├── actions │ │ │ │ │ │ └── create-initiative-update-content.ts │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── initiative-update-copy-content-button.tsx │ │ │ │ │ │ ├── initiative-update-editor.tsx │ │ │ │ │ │ ├── initiative-update-empty-state.tsx │ │ │ │ │ │ ├── initiative-update-send-button.tsx │ │ │ │ │ │ └── initiative-update-title.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ │ ├── create-initiative-button.tsx │ │ │ │ │ ├── initiative-item.tsx │ │ │ │ │ └── initiatives-empty-state.tsx │ │ │ │ └── page.tsx │ │ │ ├── insights │ │ │ │ ├── components │ │ │ │ │ ├── features │ │ │ │ │ │ ├── assigned-features.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── owners-chart.tsx │ │ │ │ │ │ ├── statuses-chart.tsx │ │ │ │ │ │ └── trend.tsx │ │ │ │ │ ├── feedback │ │ │ │ │ │ ├── incoming-chart.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── processed-chart.tsx │ │ │ │ │ │ ├── sentiment-chart.tsx │ │ │ │ │ │ └── trend.tsx │ │ │ │ │ ├── initiatives │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── initiative-page-card.tsx │ │ │ │ │ │ ├── new-initiative-pages.tsx │ │ │ │ │ │ ├── new-initiatives.tsx │ │ │ │ │ │ └── trend.tsx │ │ │ │ │ ├── overview-metrics.tsx │ │ │ │ │ └── roadmap │ │ │ │ │ │ ├── empty-state.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── quarterly-roadmap │ │ │ │ │ │ ├── gantt.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── trend.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── profile │ │ │ │ ├── components │ │ │ │ │ ├── mode-toggle.tsx │ │ │ │ │ ├── profile-form.tsx │ │ │ │ │ └── profile-photo.tsx │ │ │ │ └── page.tsx │ │ │ ├── releases │ │ │ │ ├── [release] │ │ │ │ │ ├── components │ │ │ │ │ │ ├── release-date-picker.tsx │ │ │ │ │ │ ├── release-feature.tsx │ │ │ │ │ │ ├── release-settings-dropdown.tsx │ │ │ │ │ │ ├── release-state-picker.tsx │ │ │ │ │ │ └── release-title.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ │ ├── create-release-button.tsx │ │ │ │ │ ├── release-item.tsx │ │ │ │ │ └── release-state-dot.tsx │ │ │ │ └── page.tsx │ │ │ ├── roadmap │ │ │ │ ├── calendar │ │ │ │ │ ├── components │ │ │ │ │ │ └── calendar.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ │ ├── roadmap-add-feature.tsx │ │ │ │ │ ├── roadmap-editor.tsx │ │ │ │ │ ├── roadmap-marker-dialog.tsx │ │ │ │ │ ├── roadmap-peek.tsx │ │ │ │ │ └── roadmap-search.tsx │ │ │ │ └── page.tsx │ │ │ ├── settings │ │ │ │ ├── (general) │ │ │ │ │ ├── components │ │ │ │ │ │ ├── organization-details-form.tsx │ │ │ │ │ │ ├── organization-logo-form.tsx │ │ │ │ │ │ └── product-description-form.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── ai │ │ │ │ │ ├── components │ │ │ │ │ │ └── ai-indexing-chart.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── api │ │ │ │ │ ├── components │ │ │ │ │ │ ├── api-documentation.tsx │ │ │ │ │ │ ├── api-keys-table.tsx │ │ │ │ │ │ ├── create-api-key-button.tsx │ │ │ │ │ │ └── delete-api-key-button.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ │ └── settings-navigation.tsx │ │ │ │ ├── import │ │ │ │ │ ├── canny │ │ │ │ │ │ ├── [import] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── canny-import-form.tsx │ │ │ │ │ │ │ └── canny-imports-card.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── markdown-input-form.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── productboard │ │ │ │ │ │ ├── [import] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── productboard-import-form.tsx │ │ │ │ │ │ └── productboard-imports-card.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── integrations │ │ │ │ │ ├── email │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── github │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── create-status-mappings-button.tsx │ │ │ │ │ │ │ └── feature-status-connection-picker.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── intercom │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── install-form.tsx │ │ │ │ │ │ │ ├── install.tsx │ │ │ │ │ │ │ └── manage.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── jira │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── install-form.tsx │ │ │ │ │ │ │ ├── install.tsx │ │ │ │ │ │ │ ├── jira-field-mappings │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ ├── jira-field-mapping-picker.tsx │ │ │ │ │ │ │ │ └── jira-field-mapping-table.tsx │ │ │ │ │ │ │ ├── jira-status-mappings │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ ├── jira-status-mapping-picker.tsx │ │ │ │ │ │ │ │ └── jira-status-mapping-table.tsx │ │ │ │ │ │ │ ├── manage.tsx │ │ │ │ │ │ │ └── remove-jira-button.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── linear │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── install-form.tsx │ │ │ │ │ │ │ ├── install.tsx │ │ │ │ │ │ │ └── manage.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── slack │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── install-form.tsx │ │ │ │ │ │ ├── install.tsx │ │ │ │ │ │ └── manage.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── members │ │ │ │ │ ├── components │ │ │ │ │ │ ├── delete-user-button.tsx │ │ │ │ │ │ ├── invite-member-button.tsx │ │ │ │ │ │ └── members-table.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── portal │ │ │ │ │ ├── components │ │ │ │ │ │ ├── create-portal-button.tsx │ │ │ │ │ │ ├── feature-status-card.tsx │ │ │ │ │ │ ├── feature-status-column.tsx │ │ │ │ │ │ ├── portal-features-card.tsx │ │ │ │ │ │ ├── portal-statuses-card.tsx │ │ │ │ │ │ ├── portal-url-card.tsx │ │ │ │ │ │ └── status-mappings-form.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── statuses │ │ │ │ │ ├── components │ │ │ │ │ │ ├── create-status-button.tsx │ │ │ │ │ │ ├── feature-status-color-picker.tsx │ │ │ │ │ │ ├── feature-status-dropdown.tsx │ │ │ │ │ │ ├── feature-status-item.tsx │ │ │ │ │ │ └── feature-statuses-list.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── templates │ │ │ │ │ ├── [templateId] │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── template-editor.tsx │ │ │ │ │ │ │ └── template-title.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── create-template-button.tsx │ │ │ │ │ │ ├── template-settings.tsx │ │ │ │ │ │ └── template.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── widget │ │ │ │ │ ├── components │ │ │ │ │ ├── create-link-modal.tsx │ │ │ │ │ ├── delete-widget-item-button.tsx │ │ │ │ │ ├── form.tsx │ │ │ │ │ └── preview.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── subscribe │ │ │ │ ├── components │ │ │ │ │ ├── animated-tabs.tsx │ │ │ │ │ ├── plan-card.tsx │ │ │ │ │ └── plans.tsx │ │ │ │ └── page.tsx │ │ │ └── welcome │ │ │ │ ├── components │ │ │ │ ├── add-feature-button.tsx │ │ │ │ ├── add-feedback-button.tsx │ │ │ │ └── onboarding-options.tsx │ │ │ │ └── page.tsx │ │ ├── api │ │ │ ├── editor │ │ │ │ └── generate │ │ │ │ │ └── route.ts │ │ │ ├── initiatives │ │ │ │ └── chat │ │ │ │ │ └── route.ts │ │ │ ├── integrations │ │ │ │ └── github │ │ │ │ │ └── start │ │ │ │ │ └── route.ts │ │ │ ├── portal │ │ │ │ └── route.ts │ │ │ └── stripe │ │ │ │ ├── checkout │ │ │ │ └── route.ts │ │ │ │ └── portal │ │ │ │ └── route.ts │ │ ├── apple-icon.png │ │ ├── auth │ │ │ └── confirm │ │ │ │ └── route.ts │ │ ├── components │ │ │ ├── identify.tsx │ │ │ └── pageview.tsx │ │ ├── error.tsx │ │ ├── global-error.tsx │ │ ├── icon.png │ │ ├── layout.tsx │ │ ├── not-found.tsx │ │ ├── opengraph-image.png │ │ ├── setup │ │ │ ├── components │ │ │ │ └── form.tsx │ │ │ └── page.tsx │ │ ├── sign-in │ │ │ ├── components │ │ │ │ ├── form.tsx │ │ │ │ └── url-errors.tsx │ │ │ └── page.tsx │ │ ├── sign-up │ │ │ ├── components │ │ │ │ └── form.tsx │ │ │ ├── page.tsx │ │ │ └── product-hunt.svg │ │ ├── styles.css │ │ └── upgrade │ │ │ └── page.tsx │ ├── components │ │ ├── avatar-tooltip.tsx │ │ ├── changelog-form │ │ │ ├── index.tsx │ │ │ └── use-changelog-form.ts │ │ ├── command-bar │ │ │ ├── command-bar-item.tsx │ │ │ ├── index.tsx │ │ │ └── use-command-bar.ts │ │ ├── connect-form │ │ │ ├── github │ │ │ │ ├── connect-to-github.ts │ │ │ │ ├── create-github-issue.ts │ │ │ │ ├── get-github-issues.ts │ │ │ │ ├── get-github-repositories.ts │ │ │ │ ├── github-issue-select.tsx │ │ │ │ ├── github-repo-select.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── jira │ │ │ │ ├── connect-to-jira.ts │ │ │ │ ├── create-jira-issue.ts │ │ │ │ ├── get-jira-projects.ts │ │ │ │ ├── get-jira-types.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── jira-issue-creator.tsx │ │ │ │ ├── jira-issue-picker.tsx │ │ │ │ └── search-jira-issues.ts │ │ │ ├── linear │ │ │ │ ├── connect-to-linear.ts │ │ │ │ ├── create-linear-issue.ts │ │ │ │ ├── get-linear-issues.ts │ │ │ │ ├── get-linear-teams.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── linear-issue-select.tsx │ │ │ │ └── linear-team-select.tsx │ │ │ └── use-connect-form.ts │ │ ├── document-input.tsx │ │ ├── editor │ │ │ ├── index.tsx │ │ │ └── plugins │ │ │ │ └── feedback-link │ │ │ │ ├── feedback-link-component.tsx │ │ │ │ ├── fetch-link.ts │ │ │ │ └── index.tsx │ │ ├── empty-state.tsx │ │ ├── feature-form │ │ │ ├── feature-assignee-picker.tsx │ │ │ ├── feature-group-picker.tsx │ │ │ ├── feature-product-picker.tsx │ │ │ ├── index.tsx │ │ │ └── use-feature-form.ts │ │ ├── feedback-form │ │ │ ├── add-organization-to-user.ts │ │ │ ├── create-feedback-organization-form.tsx │ │ │ ├── create-feedback-user-form.tsx │ │ │ ├── feedback-organization-picker.tsx │ │ │ ├── feedback-user-picker.tsx │ │ │ ├── index.tsx │ │ │ └── use-feedback-form.ts │ │ ├── group-form │ │ │ ├── group-product-picker.tsx │ │ │ ├── index.tsx │ │ │ ├── parent-group-picker.tsx │ │ │ └── use-group-form.ts │ │ ├── header.tsx │ │ ├── icons.tsx │ │ ├── infinite-loader.tsx │ │ ├── initiative-form │ │ │ ├── index.tsx │ │ │ └── use-initiative-form.ts │ │ ├── item-list.tsx │ │ ├── markdown.tsx │ │ ├── or-divider.tsx │ │ ├── product-form │ │ │ ├── index.tsx │ │ │ └── use-product-form.ts │ │ ├── release-form │ │ │ ├── index.tsx │ │ │ └── use-release-form.ts │ │ ├── roadmap-item.tsx │ │ ├── settings-bar │ │ │ └── index.tsx │ │ ├── sidebar │ │ │ ├── index.tsx │ │ │ └── sidebar-item.tsx │ │ ├── skeletons │ │ │ └── canvas.tsx │ │ ├── status-legend.tsx │ │ └── user-command-item.tsx │ ├── env.ts │ ├── hooks │ │ ├── use-feedback-options.ts │ │ ├── use-roadmap.ts │ │ ├── use-scroll-anchor.ts │ │ └── use-streamable-text.ts │ ├── instrumentation-client.ts │ ├── instrumentation.ts │ ├── lib │ │ ├── auth.ts │ │ ├── database.ts │ │ ├── empty-states.ts │ │ ├── example.ts │ │ ├── group.ts │ │ ├── navigation.ts │ │ ├── plans.ts │ │ ├── portal.ts │ │ ├── rice.ts │ │ └── staticify.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── providers │ │ └── query-provider.tsx │ ├── proxy.ts │ ├── public │ │ ├── canny.svg │ │ ├── dropbox.svg │ │ ├── email.svg │ │ ├── eververse.svg │ │ ├── figma.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── google-drive.svg │ │ ├── intercom.svg │ │ ├── jira.svg │ │ ├── linear.svg │ │ ├── markdown.svg │ │ ├── microsoft.svg │ │ ├── miro.svg │ │ ├── noise.png │ │ ├── notion.svg │ │ ├── orb-1.0.0.riv │ │ ├── pitch.svg │ │ ├── productboard.svg │ │ ├── slack.svg │ │ ├── whimsical.svg │ │ ├── zapier.svg │ │ └── zoom.svg │ ├── scripts │ │ └── skip-ci.js │ ├── tsconfig.json │ └── vercel.json ├── email │ ├── package.json │ └── tsconfig.json ├── portal │ ├── .env.example │ ├── app │ │ ├── (roadmap) │ │ │ ├── [featureId] │ │ │ │ ├── actions │ │ │ │ │ └── create-feedback.ts │ │ │ │ ├── components │ │ │ │ │ └── feedback-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── actions │ │ │ │ └── create-vote.ts │ │ │ ├── components │ │ │ │ └── vote-button.tsx │ │ │ └── page.tsx │ │ ├── apple-icon.png │ │ ├── changelog │ │ │ ├── [update] │ │ │ │ ├── components │ │ │ │ │ └── changelog-link.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── create-idea-form.tsx │ │ │ ├── footer.tsx │ │ │ ├── identify.tsx │ │ │ ├── login-form.tsx │ │ │ ├── mode-toggle.tsx │ │ │ ├── navbar.tsx │ │ │ ├── pageview.tsx │ │ │ └── tabs.tsx │ │ ├── global-error.tsx │ │ ├── icon.png │ │ ├── layout.tsx │ │ ├── og │ │ │ └── route.tsx │ │ ├── opengraph-image.png │ │ ├── robots.ts │ │ └── styles.css │ ├── env.ts │ ├── hooks │ │ └── use-feedback-form.ts │ ├── instrumentation-client.ts │ ├── instrumentation.ts │ ├── lib │ │ └── slug.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ └── logo.svg │ ├── scripts │ │ └── skip-ci.js │ ├── tsconfig.json │ └── vercel.json └── web │ ├── .env.example │ ├── .gitattributes │ ├── app │ ├── (home) │ │ ├── components │ │ │ ├── activity │ │ │ │ ├── components │ │ │ │ │ ├── activity-graphic.tsx │ │ │ │ │ ├── digest-graphic.tsx │ │ │ │ │ ├── presence-graphic.tsx │ │ │ │ │ └── trends-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── card.tsx │ │ │ ├── changelog │ │ │ │ ├── components │ │ │ │ │ ├── changelog-graphic.tsx │ │ │ │ │ └── generative-changelog-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── cta-button.tsx │ │ │ ├── customers │ │ │ │ ├── index.tsx │ │ │ │ └── logos.tsx │ │ │ ├── features │ │ │ │ ├── components │ │ │ │ │ ├── correlation-graphic.tsx │ │ │ │ │ ├── editor-graphic.tsx │ │ │ │ │ ├── feature-status-graphic.tsx │ │ │ │ │ ├── rice-graphic.tsx │ │ │ │ │ └── writing-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── feedback │ │ │ │ ├── components │ │ │ │ │ ├── media-feedback-graphic.tsx │ │ │ │ │ ├── sentiment-graphic.tsx │ │ │ │ │ ├── summarize-graphic.tsx │ │ │ │ │ ├── tags-graphic.tsx │ │ │ │ │ └── transcription-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── hero │ │ │ │ └── index.tsx │ │ │ ├── initiatives │ │ │ │ ├── components │ │ │ │ │ ├── canvas-graphic.tsx │ │ │ │ │ ├── initiatives-graphic.tsx │ │ │ │ │ └── updates-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── insights │ │ │ │ └── insights-graphic.tsx │ │ │ ├── integrations │ │ │ │ ├── components │ │ │ │ │ ├── api-graphic.tsx │ │ │ │ │ ├── feature-integrations-graphic.tsx │ │ │ │ │ └── feedback-integrations-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── portal │ │ │ │ └── index.tsx │ │ │ ├── releases │ │ │ │ ├── components │ │ │ │ │ ├── jira-integration-graphic.tsx │ │ │ │ │ └── release-status-graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── reviews │ │ │ │ ├── components │ │ │ │ │ └── producthunt-badges.tsx │ │ │ │ ├── product-hunt.svg │ │ │ │ └── reviews.tsx │ │ │ ├── roadmap │ │ │ │ ├── components │ │ │ │ │ ├── calendar-graphic.tsx │ │ │ │ │ ├── roadmap-graphic.tsx │ │ │ │ │ └── roadmap-views-graphic.tsx │ │ │ │ └── index.tsx │ │ │ └── widget │ │ │ │ ├── components │ │ │ │ ├── widget-graphic.tsx │ │ │ │ └── widget-link-graphic.tsx │ │ │ │ └── index.tsx │ │ └── page.tsx │ ├── apple-icon.png │ ├── global-error.tsx │ ├── icon.png │ ├── layout.tsx │ ├── legal │ │ └── (documents) │ │ │ ├── acceptable-use │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── privacy │ │ │ └── page.tsx │ │ │ └── terms │ │ │ └── page.tsx │ ├── not-found.tsx │ ├── opengraph-image.png │ ├── pricing │ │ ├── components │ │ │ └── pricing-table.tsx │ │ ├── page.tsx │ │ └── pricing-graphic.jpg │ ├── robots.ts │ ├── sitemap.ts │ └── styles.css │ ├── components │ ├── cta.tsx │ ├── feature-hero │ │ ├── feature-hero-inner.tsx │ │ └── index.tsx │ ├── footer │ │ ├── footer-link.tsx │ │ ├── index.tsx │ │ └── theme-toggle.tsx │ ├── identify.tsx │ ├── mdx-sidebar.tsx │ ├── navbar.tsx │ └── pageview.tsx │ ├── env.ts │ ├── instrumentation-client.ts │ ├── instrumentation.ts │ ├── lib │ └── features.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── .well-known │ │ └── microsoft-identity-association.json │ ├── email.svg │ ├── eververse.svg │ ├── example-user-1.jpg │ ├── example-user-2.jpg │ ├── example-user-3.jpg │ ├── example-user-4.jpg │ ├── example-user-5.jpg │ ├── example-user-6.jpg │ ├── github.svg │ ├── handgrabbing.svg │ ├── intercom.svg │ ├── jira.svg │ ├── linear.svg │ ├── logo.png │ ├── noise.png │ ├── portal-preview.jpg │ ├── slack.svg │ ├── video.jpg │ └── zapier.svg │ ├── scripts │ └── skip-ci.js │ ├── tsconfig.json │ └── vercel.json ├── biome.jsonc ├── license.md ├── package.json ├── packages ├── analytics │ ├── google.ts │ ├── index.tsx │ ├── keys.ts │ ├── package.json │ ├── posthog │ │ ├── client.tsx │ │ └── server.ts │ ├── tsconfig.json │ └── vercel.ts ├── atlassian │ ├── index.ts │ ├── package.json │ ├── tsconfig.json │ └── types.d.ts ├── backend │ ├── auth │ │ ├── actions.ts │ │ ├── client.ts │ │ ├── format.ts │ │ ├── index.ts │ │ ├── proxy.ts │ │ ├── server.ts │ │ └── utils.ts │ ├── database.ts │ ├── hooks │ │ └── use-user.ts │ ├── keys.ts │ ├── next-config.ts │ ├── package.json │ ├── prisma.config.ts │ ├── prisma │ │ └── schema.prisma │ └── tsconfig.json ├── canny │ ├── index.ts │ ├── lib │ │ ├── boards.ts │ │ ├── categories.ts │ │ ├── changelog.ts │ │ ├── comments.ts │ │ ├── companies.ts │ │ ├── opportunities.ts │ │ ├── posts.ts │ │ ├── status-change.ts │ │ ├── tags.ts │ │ ├── users.ts │ │ └── votes.ts │ ├── package.json │ └── tsconfig.json ├── canvas │ ├── components │ │ └── background.tsx │ ├── index.tsx │ ├── package.json │ ├── styles │ │ └── canvas.css │ └── tsconfig.json ├── design-system │ ├── components.json │ ├── components │ │ ├── charts │ │ │ ├── area.tsx │ │ │ ├── bar.tsx │ │ │ ├── pie.tsx │ │ │ ├── radar.tsx │ │ │ └── radial.tsx │ │ ├── climate.tsx │ │ ├── container.tsx │ │ ├── data-table-column-header.tsx │ │ ├── emoji-selector.tsx │ │ ├── emoji.tsx │ │ ├── kibo-ui │ │ │ ├── announcement │ │ │ │ └── index.tsx │ │ │ ├── avatar-stack │ │ │ │ └── index.tsx │ │ │ ├── calendar │ │ │ │ └── index.tsx │ │ │ ├── code-block │ │ │ │ ├── index.tsx │ │ │ │ └── server.tsx │ │ │ ├── combobox │ │ │ │ └── index.tsx │ │ │ ├── cursor │ │ │ │ └── index.tsx │ │ │ ├── dropzone │ │ │ │ └── index.tsx │ │ │ ├── gantt │ │ │ │ └── index.tsx │ │ │ ├── kanban │ │ │ │ └── index.tsx │ │ │ ├── list │ │ │ │ └── index.tsx │ │ │ ├── marquee │ │ │ │ └── index.tsx │ │ │ ├── status │ │ │ │ └── index.tsx │ │ │ ├── table │ │ │ │ └── index.tsx │ │ │ ├── theme-switcher │ │ │ │ └── index.tsx │ │ │ └── video-player │ │ │ │ └── index.tsx │ │ ├── link.tsx │ │ ├── loading-circle.tsx │ │ ├── logo.tsx │ │ ├── precomposed │ │ │ ├── alert-dialog.tsx │ │ │ ├── avatar.tsx │ │ │ ├── breadcrumbs.tsx │ │ │ ├── calendar.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── input.tsx │ │ │ ├── select.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── switch.tsx │ │ │ ├── textarea.tsx │ │ │ └── tooltip.tsx │ │ ├── prose.tsx │ │ ├── provider.tsx │ │ ├── sentiment-emoji.tsx │ │ ├── stack-card.tsx │ │ ├── stepper.tsx │ │ ├── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button-group.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── empty.tsx │ │ │ ├── field.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-group.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── item.tsx │ │ │ ├── kbd.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── spinner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ │ └── video.tsx │ ├── hooks │ │ ├── use-copy-to-clipboard.ts │ │ ├── use-enter-submit.ts │ │ ├── use-is-mobile.ts │ │ ├── use-mobile.ts │ │ ├── use-mobile.tsx │ │ └── use-toast.ts │ ├── lib │ │ ├── colors.ts │ │ ├── fonts.ts │ │ ├── handle-error.ts │ │ ├── toast.ts │ │ └── utils.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── styles │ │ └── globals.css │ └── tsconfig.json ├── editor │ ├── components │ │ ├── menus │ │ │ ├── bubble-menu.tsx │ │ │ ├── command-menu.tsx │ │ │ └── table-menu │ │ │ │ ├── index.tsx │ │ │ │ └── table.css │ │ ├── plugins │ │ │ ├── ai │ │ │ │ ├── ai-selector.tsx │ │ │ │ ├── completion-commands.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── selector-commands.tsx │ │ │ ├── code-block │ │ │ │ └── index.ts │ │ │ ├── color-highlighter │ │ │ │ ├── color-highlighter.css │ │ │ │ └── index.ts │ │ │ ├── emoji │ │ │ │ ├── emoji-list.tsx │ │ │ │ └── index.ts │ │ │ ├── feedback-feature-mark │ │ │ │ ├── feedback-feature-mark.css │ │ │ │ └── index.tsx │ │ │ ├── file │ │ │ │ ├── file.css │ │ │ │ └── index.ts │ │ │ ├── mention │ │ │ │ ├── index.ts │ │ │ │ ├── mention-list.tsx │ │ │ │ └── mention.css │ │ │ └── suggestion-list.tsx │ │ ├── selectors │ │ │ ├── format-selector.tsx │ │ │ ├── link-selector.tsx │ │ │ ├── node-selector.tsx │ │ │ └── text-buttons.tsx │ │ └── slash-command.tsx │ ├── index.tsx │ ├── lib │ │ ├── extensions │ │ │ ├── client.ts │ │ │ └── server.ts │ │ ├── generate-html.ts │ │ ├── jira.ts │ │ ├── tiptap.ts │ │ └── upload-file.ts │ ├── package.json │ ├── styles │ │ └── editor.css │ ├── templates │ │ ├── atlassian.json │ │ ├── loom.json │ │ └── notion.json │ └── tsconfig.json ├── email │ ├── index.ts │ ├── keys.ts │ ├── package.json │ ├── templates │ │ ├── forgot-password.tsx │ │ ├── initiative-update.tsx │ │ ├── layout.tsx │ │ ├── sign-in.tsx │ │ └── sign-up.tsx │ └── tsconfig.json ├── github │ ├── index.ts │ ├── keys.ts │ ├── package.json │ ├── tsconfig.json │ └── webhooks.ts ├── lib │ ├── package.json │ ├── src │ │ ├── consts.ts │ │ ├── email.ts │ │ ├── format.ts │ │ ├── fuse.ts │ │ ├── gravatar.ts │ │ ├── parse-error.ts │ │ └── slugify.ts │ └── tsconfig.json ├── linear │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── next-config │ ├── index.ts │ ├── keys.ts │ ├── package.json │ └── tsconfig.json ├── observability │ ├── client.ts │ ├── error.ts │ ├── instrumentation.ts │ ├── keys.ts │ ├── log.ts │ ├── next-config.ts │ ├── package.json │ ├── status │ │ ├── index.tsx │ │ └── types.ts │ └── tsconfig.json ├── payments │ ├── ai.ts │ ├── index.ts │ ├── keys.ts │ ├── package.json │ └── tsconfig.json ├── productboard │ ├── index.ts │ ├── package.json │ ├── schema.json │ ├── tsconfig.json │ └── types.d.ts ├── seo │ ├── json-ld.tsx │ ├── metadata.ts │ ├── package.json │ └── tsconfig.json ├── typescript-config │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json └── widget │ ├── components │ ├── dynamic-icon.tsx │ ├── widget-footer.tsx │ ├── widget-group.tsx │ └── widget-item.tsx │ ├── index.tsx │ ├── package.json │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── supabase ├── config.toml └── templates │ ├── confirmation.html │ └── magic_link.html └── turbo.json /.autorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.autorc -------------------------------------------------------------------------------- /.claude/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.claude/CLAUDE.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.cursor/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.cursor/hooks.json -------------------------------------------------------------------------------- /.cursor/rules/ultracite.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.cursor/rules/ultracite.mdc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/README.md -------------------------------------------------------------------------------- /apps/adf-validator/app/components/validator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/app/components/validator.tsx -------------------------------------------------------------------------------- /apps/adf-validator/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/app/favicon.ico -------------------------------------------------------------------------------- /apps/adf-validator/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/app/layout.tsx -------------------------------------------------------------------------------- /apps/adf-validator/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/app/page.tsx -------------------------------------------------------------------------------- /apps/adf-validator/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/app/styles.css -------------------------------------------------------------------------------- /apps/adf-validator/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/next.config.ts -------------------------------------------------------------------------------- /apps/adf-validator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/package.json -------------------------------------------------------------------------------- /apps/adf-validator/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from "@repo/design-system/postcss.config.mjs"; 2 | -------------------------------------------------------------------------------- /apps/adf-validator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/adf-validator/tsconfig.json -------------------------------------------------------------------------------- /apps/api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/.env.example -------------------------------------------------------------------------------- /apps/api/app/(data)/changelog/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(data)/changelog/route.ts -------------------------------------------------------------------------------- /apps/api/app/(data)/feature/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(data)/feature/route.ts -------------------------------------------------------------------------------- /apps/api/app/(data)/feedback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(data)/feedback/route.ts -------------------------------------------------------------------------------- /apps/api/app/(widget)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(widget)/layout.tsx -------------------------------------------------------------------------------- /apps/api/app/(widget)/panel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(widget)/panel/page.tsx -------------------------------------------------------------------------------- /apps/api/app/(widget)/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(widget)/styles.css -------------------------------------------------------------------------------- /apps/api/app/(widget)/trigger/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/(widget)/trigger/page.tsx -------------------------------------------------------------------------------- /apps/api/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/apple-icon.png -------------------------------------------------------------------------------- /apps/api/app/authenticate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/authenticate/route.ts -------------------------------------------------------------------------------- /apps/api/app/cron/digest/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/digest/route.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/index.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-boards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-boards.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-categories.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-changelogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-changelogs.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-comments.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-companies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-companies.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-posts.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-status-changes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-status-changes.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-statuses.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-tags.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-users.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/canny/migrate-votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/canny/migrate-votes.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/index.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-companies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-companies.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-components.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-custom-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-custom-fields.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-domains.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-feature-statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-feature-statuses.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-features.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-jira-connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-jira-connections.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-note-connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-note-connections.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-note-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-note-tags.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-notes.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-products.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-releases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-releases.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-tags.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/productboard/migrate-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/productboard/migrate-users.ts -------------------------------------------------------------------------------- /apps/api/app/cron/import/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/cron/import/route.ts -------------------------------------------------------------------------------- /apps/api/app/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/health/route.ts -------------------------------------------------------------------------------- /apps/api/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/icon.png -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/features/rice/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/features/rice/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/feedback/analyze/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/feedback/analyze/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/feedback/sentiment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/feedback/sentiment/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/feedback/slack/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/feedback/slack/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/feedback/transcribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/feedback/transcribe/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/organization/delete/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/organization/delete/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/database/user/upsert/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/database/user/upsert/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/email/inbound/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/email/inbound/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/github/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/github/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/intercom/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/intercom/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/jira/[slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/jira/[slug]/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/linear/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/linear/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/resend/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/resend/route.tsx -------------------------------------------------------------------------------- /apps/api/app/webhooks/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/stripe/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/zapier/feature/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/zapier/feature/route.ts -------------------------------------------------------------------------------- /apps/api/app/webhooks/zapier/feedback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/app/webhooks/zapier/feedback/route.ts -------------------------------------------------------------------------------- /apps/api/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/env.ts -------------------------------------------------------------------------------- /apps/api/instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/instrumentation-client.ts -------------------------------------------------------------------------------- /apps/api/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/instrumentation.ts -------------------------------------------------------------------------------- /apps/api/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/next.config.ts -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from "@repo/design-system/postcss.config.mjs"; 2 | -------------------------------------------------------------------------------- /apps/api/public/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/public/widget.js -------------------------------------------------------------------------------- /apps/api/scripts/skip-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/scripts/skip-ci.js -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/api/vercel.json -------------------------------------------------------------------------------- /apps/app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/.env.example -------------------------------------------------------------------------------- /apps/app/actions/activity/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/activity/get.ts -------------------------------------------------------------------------------- /apps/app/actions/api-key/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/api-key/create.ts -------------------------------------------------------------------------------- /apps/app/actions/api-key/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/api-key/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/atlassian-installation/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/atlassian-installation/create.ts -------------------------------------------------------------------------------- /apps/app/actions/atlassian-installation/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/atlassian-installation/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/canny-import/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/canny-import/create.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog-contributor/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog-contributor/create.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog-contributor/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog-contributor/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog-tag/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog-tag/connect.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog-tag/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog-tag/create.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog-tag/disconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog-tag/disconnect.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog/create.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog/generate.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog/get.ts -------------------------------------------------------------------------------- /apps/app/actions/changelog/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/changelog/update.ts -------------------------------------------------------------------------------- /apps/app/actions/example-content/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/example-content/create.ts -------------------------------------------------------------------------------- /apps/app/actions/example-content/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/example-content/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/example-content/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/example-content/skip.ts -------------------------------------------------------------------------------- /apps/app/actions/feature-connection/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature-connection/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/feature-rice/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature-rice/update.ts -------------------------------------------------------------------------------- /apps/app/actions/feature-status/bulk/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature-status/bulk/update.ts -------------------------------------------------------------------------------- /apps/app/actions/feature-status/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature-status/create.ts -------------------------------------------------------------------------------- /apps/app/actions/feature-status/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature-status/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/feature-status/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature-status/update.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/bulk/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/bulk/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/bulk/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/bulk/update.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/create.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/get.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/list.ts -------------------------------------------------------------------------------- /apps/app/actions/feature/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feature/update.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback-organization/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback-organization/create.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback-organization/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback-organization/list.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback-user/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback-user/create.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback-user/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback-user/list.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback/create.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback/get.ts -------------------------------------------------------------------------------- /apps/app/actions/feedback/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/feedback/update.ts -------------------------------------------------------------------------------- /apps/app/actions/group/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/group/create.ts -------------------------------------------------------------------------------- /apps/app/actions/group/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/group/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/group/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/group/update.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-canvas/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-canvas/update.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-file/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-file/create.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-file/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-file/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-link/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-link/create.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-link/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-link/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-member/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-member/create.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-member/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-member/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-page/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-page/create.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-page/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-page/update.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-update/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-update/create.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-update/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-update/generate.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative-update/send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-update/send.tsx -------------------------------------------------------------------------------- /apps/app/actions/initiative-update/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative-update/update.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative/create.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/initiative/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/initiative/update.ts -------------------------------------------------------------------------------- /apps/app/actions/installation-field-mapping/jira/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/installation-field-mapping/jira/update.ts -------------------------------------------------------------------------------- /apps/app/actions/installation-status-mapping/github/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/installation-status-mapping/github/create.ts -------------------------------------------------------------------------------- /apps/app/actions/installation-status-mapping/jira/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/installation-status-mapping/jira/update.ts -------------------------------------------------------------------------------- /apps/app/actions/installation-status-mapping/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/installation-status-mapping/update.ts -------------------------------------------------------------------------------- /apps/app/actions/intercom-installation/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/intercom-installation/create.ts -------------------------------------------------------------------------------- /apps/app/actions/intercom-installation/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/intercom-installation/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/linear-installation/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/linear-installation/create.ts -------------------------------------------------------------------------------- /apps/app/actions/linear-installation/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/linear-installation/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/markdown/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/markdown/import.ts -------------------------------------------------------------------------------- /apps/app/actions/markdown/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/markdown/parse.ts -------------------------------------------------------------------------------- /apps/app/actions/organization/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/organization/create.ts -------------------------------------------------------------------------------- /apps/app/actions/organization/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/organization/update.ts -------------------------------------------------------------------------------- /apps/app/actions/portal-feature/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/portal-feature/create.ts -------------------------------------------------------------------------------- /apps/app/actions/portal-feature/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/portal-feature/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/portal-feature/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/portal-feature/update.ts -------------------------------------------------------------------------------- /apps/app/actions/portal-status-mapping/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/portal-status-mapping/update.ts -------------------------------------------------------------------------------- /apps/app/actions/portal/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/portal/create.ts -------------------------------------------------------------------------------- /apps/app/actions/product/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/product/create.ts -------------------------------------------------------------------------------- /apps/app/actions/product/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/product/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/product/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/product/update.ts -------------------------------------------------------------------------------- /apps/app/actions/productboard-import/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/productboard-import/create.ts -------------------------------------------------------------------------------- /apps/app/actions/release/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/release/create.ts -------------------------------------------------------------------------------- /apps/app/actions/release/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/release/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/release/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/release/update.ts -------------------------------------------------------------------------------- /apps/app/actions/roadmap-event/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/roadmap-event/create.ts -------------------------------------------------------------------------------- /apps/app/actions/roadmap-event/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/roadmap-event/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/slack-installation/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/slack-installation/create.ts -------------------------------------------------------------------------------- /apps/app/actions/slack-installation/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/slack-installation/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/slack-installation/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/slack-installation/test.ts -------------------------------------------------------------------------------- /apps/app/actions/template/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/template/create.ts -------------------------------------------------------------------------------- /apps/app/actions/template/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/template/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/template/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/template/update.ts -------------------------------------------------------------------------------- /apps/app/actions/users/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/users/invite.ts -------------------------------------------------------------------------------- /apps/app/actions/users/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/users/remove.ts -------------------------------------------------------------------------------- /apps/app/actions/users/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/users/search.ts -------------------------------------------------------------------------------- /apps/app/actions/users/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/users/update.ts -------------------------------------------------------------------------------- /apps/app/actions/widget-item/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/widget-item/create.ts -------------------------------------------------------------------------------- /apps/app/actions/widget-item/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/widget-item/delete.ts -------------------------------------------------------------------------------- /apps/app/actions/widget-item/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/widget-item/update.ts -------------------------------------------------------------------------------- /apps/app/actions/widget/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/actions/widget/update.ts -------------------------------------------------------------------------------- /apps/app/app/(organization)/(home)/components/digest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/(home)/components/digest.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/(home)/components/greeting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/(home)/components/greeting.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/(home)/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/activity/components/activity-day.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/activity/components/activity-day.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/activity/components/activity-feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/activity/components/activity-feed.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/activity/components/activity-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/activity/components/activity-item.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/activity/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/activity/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/callbacks/github/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/callbacks/github/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/changelog/[update]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/changelog/[update]/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/changelog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/changelog/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/changelog/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/company-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/company-logo.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/forms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/forms.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/global-breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/global-breadcrumbs.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/navbar.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/organization-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/organization-list.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/organization-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/organization-switcher.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/team-subscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/team-subscribe.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/components/team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/components/team.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/data/companies/[company]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/data/companies/[company]/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/data/companies/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/data/companies/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/data/companies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/data/companies/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/data/users/[user]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/data/users/[user]/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/data/users/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/data/users/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/data/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/data/users/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/(list)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/(list)/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/(list)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/(list)/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/(list)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/(list)/search/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/[feature]/(notes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/[feature]/(notes)/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/[feature]/canvas/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/[feature]/canvas/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/[feature]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/[feature]/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/features/components/feature-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/features/components/feature-item.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/feedback/[feedback]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/feedback/[feedback]/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/feedback/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/feedback/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/feedback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/feedback/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/initiatives/[initiative]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/initiatives/[initiative]/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/initiatives/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/initiatives/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/insights/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/insights/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/profile/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/profile/components/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/profile/components/profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/profile/components/profile-form.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/profile/components/profile-photo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/profile/components/profile-photo.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/profile/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/releases/[release]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/releases/[release]/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/releases/components/release-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/releases/components/release-item.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/releases/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/releases/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/roadmap/calendar/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/roadmap/calendar/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/roadmap/components/roadmap-peek.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/roadmap/components/roadmap-peek.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/roadmap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/roadmap/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/(general)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/(general)/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/ai/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/ai/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/api/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/api/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/import/canny/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/import/canny/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/import/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/import/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/import/markdown/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/import/markdown/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/import/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/import/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/integrations/email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/integrations/email/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/integrations/jira/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/integrations/jira/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/integrations/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/integrations/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/integrations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/integrations/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/integrations/slack/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/integrations/slack/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/members/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/portal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/portal/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/statuses/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/statuses/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/templates/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/templates/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/templates/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/templates/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/widget/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/widget/components/form.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/settings/widget/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/settings/widget/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/subscribe/components/plan-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/subscribe/components/plan-card.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/subscribe/components/plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/subscribe/components/plans.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/subscribe/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/subscribe/page.tsx -------------------------------------------------------------------------------- /apps/app/app/(organization)/welcome/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/(organization)/welcome/page.tsx -------------------------------------------------------------------------------- /apps/app/app/api/editor/generate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/api/editor/generate/route.ts -------------------------------------------------------------------------------- /apps/app/app/api/initiatives/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/api/initiatives/chat/route.ts -------------------------------------------------------------------------------- /apps/app/app/api/integrations/github/start/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/api/integrations/github/start/route.ts -------------------------------------------------------------------------------- /apps/app/app/api/portal/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/api/portal/route.ts -------------------------------------------------------------------------------- /apps/app/app/api/stripe/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/api/stripe/checkout/route.ts -------------------------------------------------------------------------------- /apps/app/app/api/stripe/portal/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/api/stripe/portal/route.ts -------------------------------------------------------------------------------- /apps/app/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/apple-icon.png -------------------------------------------------------------------------------- /apps/app/app/auth/confirm/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/auth/confirm/route.ts -------------------------------------------------------------------------------- /apps/app/app/components/identify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/components/identify.tsx -------------------------------------------------------------------------------- /apps/app/app/components/pageview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/components/pageview.tsx -------------------------------------------------------------------------------- /apps/app/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/error.tsx -------------------------------------------------------------------------------- /apps/app/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/global-error.tsx -------------------------------------------------------------------------------- /apps/app/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/icon.png -------------------------------------------------------------------------------- /apps/app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/layout.tsx -------------------------------------------------------------------------------- /apps/app/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/not-found.tsx -------------------------------------------------------------------------------- /apps/app/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/app/app/setup/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/setup/components/form.tsx -------------------------------------------------------------------------------- /apps/app/app/setup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/setup/page.tsx -------------------------------------------------------------------------------- /apps/app/app/sign-in/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/sign-in/components/form.tsx -------------------------------------------------------------------------------- /apps/app/app/sign-in/components/url-errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/sign-in/components/url-errors.tsx -------------------------------------------------------------------------------- /apps/app/app/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/sign-in/page.tsx -------------------------------------------------------------------------------- /apps/app/app/sign-up/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/sign-up/components/form.tsx -------------------------------------------------------------------------------- /apps/app/app/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/sign-up/page.tsx -------------------------------------------------------------------------------- /apps/app/app/sign-up/product-hunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/sign-up/product-hunt.svg -------------------------------------------------------------------------------- /apps/app/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/styles.css -------------------------------------------------------------------------------- /apps/app/app/upgrade/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/app/upgrade/page.tsx -------------------------------------------------------------------------------- /apps/app/components/avatar-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/avatar-tooltip.tsx -------------------------------------------------------------------------------- /apps/app/components/changelog-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/changelog-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/changelog-form/use-changelog-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/changelog-form/use-changelog-form.ts -------------------------------------------------------------------------------- /apps/app/components/command-bar/command-bar-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/command-bar/command-bar-item.tsx -------------------------------------------------------------------------------- /apps/app/components/command-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/command-bar/index.tsx -------------------------------------------------------------------------------- /apps/app/components/command-bar/use-command-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/command-bar/use-command-bar.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/github/connect-to-github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/github/connect-to-github.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/github/create-github-issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/github/create-github-issue.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/github/get-github-issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/github/get-github-issues.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/github/github-issue-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/github/github-issue-select.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/github/github-repo-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/github/github-repo-select.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/github/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/github/index.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/connect-to-jira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/connect-to-jira.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/create-jira-issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/create-jira-issue.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/get-jira-projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/get-jira-projects.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/get-jira-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/get-jira-types.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/index.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/jira-issue-creator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/jira-issue-creator.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/jira-issue-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/jira-issue-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/jira/search-jira-issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/jira/search-jira-issues.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/connect-to-linear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/connect-to-linear.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/create-linear-issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/create-linear-issue.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/get-linear-issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/get-linear-issues.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/get-linear-teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/get-linear-teams.ts -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/index.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/linear-issue-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/linear-issue-select.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/linear/linear-team-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/linear/linear-team-select.tsx -------------------------------------------------------------------------------- /apps/app/components/connect-form/use-connect-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/connect-form/use-connect-form.ts -------------------------------------------------------------------------------- /apps/app/components/document-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/document-input.tsx -------------------------------------------------------------------------------- /apps/app/components/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/editor/index.tsx -------------------------------------------------------------------------------- /apps/app/components/editor/plugins/feedback-link/fetch-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/editor/plugins/feedback-link/fetch-link.ts -------------------------------------------------------------------------------- /apps/app/components/editor/plugins/feedback-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/editor/plugins/feedback-link/index.tsx -------------------------------------------------------------------------------- /apps/app/components/empty-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/empty-state.tsx -------------------------------------------------------------------------------- /apps/app/components/feature-form/feature-assignee-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feature-form/feature-assignee-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/feature-form/feature-group-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feature-form/feature-group-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/feature-form/feature-product-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feature-form/feature-product-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/feature-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feature-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/feature-form/use-feature-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feature-form/use-feature-form.ts -------------------------------------------------------------------------------- /apps/app/components/feedback-form/add-organization-to-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feedback-form/add-organization-to-user.ts -------------------------------------------------------------------------------- /apps/app/components/feedback-form/create-feedback-user-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feedback-form/create-feedback-user-form.tsx -------------------------------------------------------------------------------- /apps/app/components/feedback-form/feedback-user-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feedback-form/feedback-user-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/feedback-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feedback-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/feedback-form/use-feedback-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/feedback-form/use-feedback-form.ts -------------------------------------------------------------------------------- /apps/app/components/group-form/group-product-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/group-form/group-product-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/group-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/group-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/group-form/parent-group-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/group-form/parent-group-picker.tsx -------------------------------------------------------------------------------- /apps/app/components/group-form/use-group-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/group-form/use-group-form.ts -------------------------------------------------------------------------------- /apps/app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/header.tsx -------------------------------------------------------------------------------- /apps/app/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/icons.tsx -------------------------------------------------------------------------------- /apps/app/components/infinite-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/infinite-loader.tsx -------------------------------------------------------------------------------- /apps/app/components/initiative-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/initiative-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/initiative-form/use-initiative-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/initiative-form/use-initiative-form.ts -------------------------------------------------------------------------------- /apps/app/components/item-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/item-list.tsx -------------------------------------------------------------------------------- /apps/app/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/markdown.tsx -------------------------------------------------------------------------------- /apps/app/components/or-divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/or-divider.tsx -------------------------------------------------------------------------------- /apps/app/components/product-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/product-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/product-form/use-product-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/product-form/use-product-form.ts -------------------------------------------------------------------------------- /apps/app/components/release-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/release-form/index.tsx -------------------------------------------------------------------------------- /apps/app/components/release-form/use-release-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/release-form/use-release-form.ts -------------------------------------------------------------------------------- /apps/app/components/roadmap-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/roadmap-item.tsx -------------------------------------------------------------------------------- /apps/app/components/settings-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/settings-bar/index.tsx -------------------------------------------------------------------------------- /apps/app/components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/sidebar/index.tsx -------------------------------------------------------------------------------- /apps/app/components/sidebar/sidebar-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/sidebar/sidebar-item.tsx -------------------------------------------------------------------------------- /apps/app/components/skeletons/canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/skeletons/canvas.tsx -------------------------------------------------------------------------------- /apps/app/components/status-legend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/status-legend.tsx -------------------------------------------------------------------------------- /apps/app/components/user-command-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/components/user-command-item.tsx -------------------------------------------------------------------------------- /apps/app/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/env.ts -------------------------------------------------------------------------------- /apps/app/hooks/use-feedback-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/hooks/use-feedback-options.ts -------------------------------------------------------------------------------- /apps/app/hooks/use-roadmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/hooks/use-roadmap.ts -------------------------------------------------------------------------------- /apps/app/hooks/use-scroll-anchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/hooks/use-scroll-anchor.ts -------------------------------------------------------------------------------- /apps/app/hooks/use-streamable-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/hooks/use-streamable-text.ts -------------------------------------------------------------------------------- /apps/app/instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/instrumentation-client.ts -------------------------------------------------------------------------------- /apps/app/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/instrumentation.ts -------------------------------------------------------------------------------- /apps/app/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/auth.ts -------------------------------------------------------------------------------- /apps/app/lib/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/database.ts -------------------------------------------------------------------------------- /apps/app/lib/empty-states.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/empty-states.ts -------------------------------------------------------------------------------- /apps/app/lib/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/example.ts -------------------------------------------------------------------------------- /apps/app/lib/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/group.ts -------------------------------------------------------------------------------- /apps/app/lib/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/navigation.ts -------------------------------------------------------------------------------- /apps/app/lib/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/plans.ts -------------------------------------------------------------------------------- /apps/app/lib/portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/portal.ts -------------------------------------------------------------------------------- /apps/app/lib/rice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/rice.ts -------------------------------------------------------------------------------- /apps/app/lib/staticify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/lib/staticify.ts -------------------------------------------------------------------------------- /apps/app/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/next.config.ts -------------------------------------------------------------------------------- /apps/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/package.json -------------------------------------------------------------------------------- /apps/app/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from "@repo/design-system/postcss.config.mjs"; 2 | -------------------------------------------------------------------------------- /apps/app/providers/query-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/providers/query-provider.tsx -------------------------------------------------------------------------------- /apps/app/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/proxy.ts -------------------------------------------------------------------------------- /apps/app/public/canny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/canny.svg -------------------------------------------------------------------------------- /apps/app/public/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/dropbox.svg -------------------------------------------------------------------------------- /apps/app/public/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/email.svg -------------------------------------------------------------------------------- /apps/app/public/eververse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/eververse.svg -------------------------------------------------------------------------------- /apps/app/public/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/figma.svg -------------------------------------------------------------------------------- /apps/app/public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/github.svg -------------------------------------------------------------------------------- /apps/app/public/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/gitlab.svg -------------------------------------------------------------------------------- /apps/app/public/google-drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/google-drive.svg -------------------------------------------------------------------------------- /apps/app/public/intercom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/intercom.svg -------------------------------------------------------------------------------- /apps/app/public/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/jira.svg -------------------------------------------------------------------------------- /apps/app/public/linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/linear.svg -------------------------------------------------------------------------------- /apps/app/public/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/markdown.svg -------------------------------------------------------------------------------- /apps/app/public/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/microsoft.svg -------------------------------------------------------------------------------- /apps/app/public/miro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/miro.svg -------------------------------------------------------------------------------- /apps/app/public/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/noise.png -------------------------------------------------------------------------------- /apps/app/public/notion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/notion.svg -------------------------------------------------------------------------------- /apps/app/public/orb-1.0.0.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/orb-1.0.0.riv -------------------------------------------------------------------------------- /apps/app/public/pitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/pitch.svg -------------------------------------------------------------------------------- /apps/app/public/productboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/productboard.svg -------------------------------------------------------------------------------- /apps/app/public/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/slack.svg -------------------------------------------------------------------------------- /apps/app/public/whimsical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/whimsical.svg -------------------------------------------------------------------------------- /apps/app/public/zapier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/zapier.svg -------------------------------------------------------------------------------- /apps/app/public/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/public/zoom.svg -------------------------------------------------------------------------------- /apps/app/scripts/skip-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/scripts/skip-ci.js -------------------------------------------------------------------------------- /apps/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/tsconfig.json -------------------------------------------------------------------------------- /apps/app/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/app/vercel.json -------------------------------------------------------------------------------- /apps/email/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/email/package.json -------------------------------------------------------------------------------- /apps/email/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/email/tsconfig.json -------------------------------------------------------------------------------- /apps/portal/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/.env.example -------------------------------------------------------------------------------- /apps/portal/app/(roadmap)/[featureId]/actions/create-feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/(roadmap)/[featureId]/actions/create-feedback.ts -------------------------------------------------------------------------------- /apps/portal/app/(roadmap)/[featureId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/(roadmap)/[featureId]/page.tsx -------------------------------------------------------------------------------- /apps/portal/app/(roadmap)/actions/create-vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/(roadmap)/actions/create-vote.ts -------------------------------------------------------------------------------- /apps/portal/app/(roadmap)/components/vote-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/(roadmap)/components/vote-button.tsx -------------------------------------------------------------------------------- /apps/portal/app/(roadmap)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/(roadmap)/page.tsx -------------------------------------------------------------------------------- /apps/portal/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/apple-icon.png -------------------------------------------------------------------------------- /apps/portal/app/changelog/[update]/components/changelog-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/changelog/[update]/components/changelog-link.tsx -------------------------------------------------------------------------------- /apps/portal/app/changelog/[update]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/changelog/[update]/layout.tsx -------------------------------------------------------------------------------- /apps/portal/app/changelog/[update]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/changelog/[update]/page.tsx -------------------------------------------------------------------------------- /apps/portal/app/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/changelog/page.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/create-idea-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/create-idea-form.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/footer.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/identify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/identify.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/login-form.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/navbar.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/pageview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/pageview.tsx -------------------------------------------------------------------------------- /apps/portal/app/components/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/components/tabs.tsx -------------------------------------------------------------------------------- /apps/portal/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/global-error.tsx -------------------------------------------------------------------------------- /apps/portal/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/icon.png -------------------------------------------------------------------------------- /apps/portal/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/layout.tsx -------------------------------------------------------------------------------- /apps/portal/app/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/og/route.tsx -------------------------------------------------------------------------------- /apps/portal/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/portal/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/robots.ts -------------------------------------------------------------------------------- /apps/portal/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/app/styles.css -------------------------------------------------------------------------------- /apps/portal/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/env.ts -------------------------------------------------------------------------------- /apps/portal/hooks/use-feedback-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/hooks/use-feedback-form.ts -------------------------------------------------------------------------------- /apps/portal/instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/instrumentation-client.ts -------------------------------------------------------------------------------- /apps/portal/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/instrumentation.ts -------------------------------------------------------------------------------- /apps/portal/lib/slug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/lib/slug.ts -------------------------------------------------------------------------------- /apps/portal/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/next.config.ts -------------------------------------------------------------------------------- /apps/portal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/package.json -------------------------------------------------------------------------------- /apps/portal/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from "@repo/design-system/postcss.config.mjs"; 2 | -------------------------------------------------------------------------------- /apps/portal/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/public/logo.svg -------------------------------------------------------------------------------- /apps/portal/scripts/skip-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/scripts/skip-ci.js -------------------------------------------------------------------------------- /apps/portal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/tsconfig.json -------------------------------------------------------------------------------- /apps/portal/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/portal/vercel.json -------------------------------------------------------------------------------- /apps/web/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/.env.example -------------------------------------------------------------------------------- /apps/web/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/.gitattributes -------------------------------------------------------------------------------- /apps/web/app/(home)/components/activity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/activity/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/card.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/changelog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/changelog/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/cta-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/cta-button.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/customers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/customers/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/customers/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/customers/logos.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/features/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/features/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/feedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/feedback/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/hero/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/initiatives/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/initiatives/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/insights/insights-graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/insights/insights-graphic.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/integrations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/integrations/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/portal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/portal/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/releases/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/releases/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/reviews/product-hunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/reviews/product-hunt.svg -------------------------------------------------------------------------------- /apps/web/app/(home)/components/reviews/reviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/reviews/reviews.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/roadmap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/roadmap/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/components/widget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/components/widget/index.tsx -------------------------------------------------------------------------------- /apps/web/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/(home)/page.tsx -------------------------------------------------------------------------------- /apps/web/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/apple-icon.png -------------------------------------------------------------------------------- /apps/web/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/global-error.tsx -------------------------------------------------------------------------------- /apps/web/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/icon.png -------------------------------------------------------------------------------- /apps/web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/legal/(documents)/acceptable-use/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/legal/(documents)/acceptable-use/page.tsx -------------------------------------------------------------------------------- /apps/web/app/legal/(documents)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/legal/(documents)/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/legal/(documents)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/legal/(documents)/privacy/page.tsx -------------------------------------------------------------------------------- /apps/web/app/legal/(documents)/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/legal/(documents)/terms/page.tsx -------------------------------------------------------------------------------- /apps/web/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/not-found.tsx -------------------------------------------------------------------------------- /apps/web/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/web/app/pricing/components/pricing-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/pricing/components/pricing-table.tsx -------------------------------------------------------------------------------- /apps/web/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/pricing/page.tsx -------------------------------------------------------------------------------- /apps/web/app/pricing/pricing-graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/pricing/pricing-graphic.jpg -------------------------------------------------------------------------------- /apps/web/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/robots.ts -------------------------------------------------------------------------------- /apps/web/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/sitemap.ts -------------------------------------------------------------------------------- /apps/web/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/app/styles.css -------------------------------------------------------------------------------- /apps/web/components/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/cta.tsx -------------------------------------------------------------------------------- /apps/web/components/feature-hero/feature-hero-inner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/feature-hero/feature-hero-inner.tsx -------------------------------------------------------------------------------- /apps/web/components/feature-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/feature-hero/index.tsx -------------------------------------------------------------------------------- /apps/web/components/footer/footer-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/footer/footer-link.tsx -------------------------------------------------------------------------------- /apps/web/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/footer/index.tsx -------------------------------------------------------------------------------- /apps/web/components/footer/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/footer/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/web/components/identify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/identify.tsx -------------------------------------------------------------------------------- /apps/web/components/mdx-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/mdx-sidebar.tsx -------------------------------------------------------------------------------- /apps/web/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/navbar.tsx -------------------------------------------------------------------------------- /apps/web/components/pageview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/components/pageview.tsx -------------------------------------------------------------------------------- /apps/web/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/env.ts -------------------------------------------------------------------------------- /apps/web/instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/instrumentation-client.ts -------------------------------------------------------------------------------- /apps/web/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/instrumentation.ts -------------------------------------------------------------------------------- /apps/web/lib/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/lib/features.ts -------------------------------------------------------------------------------- /apps/web/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/next.config.ts -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from "@repo/design-system/postcss.config.mjs"; 2 | -------------------------------------------------------------------------------- /apps/web/public/.well-known/microsoft-identity-association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/.well-known/microsoft-identity-association.json -------------------------------------------------------------------------------- /apps/web/public/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/email.svg -------------------------------------------------------------------------------- /apps/web/public/eververse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/eververse.svg -------------------------------------------------------------------------------- /apps/web/public/example-user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/example-user-1.jpg -------------------------------------------------------------------------------- /apps/web/public/example-user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/example-user-2.jpg -------------------------------------------------------------------------------- /apps/web/public/example-user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/example-user-3.jpg -------------------------------------------------------------------------------- /apps/web/public/example-user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/example-user-4.jpg -------------------------------------------------------------------------------- /apps/web/public/example-user-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/example-user-5.jpg -------------------------------------------------------------------------------- /apps/web/public/example-user-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/example-user-6.jpg -------------------------------------------------------------------------------- /apps/web/public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/github.svg -------------------------------------------------------------------------------- /apps/web/public/handgrabbing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/handgrabbing.svg -------------------------------------------------------------------------------- /apps/web/public/intercom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/intercom.svg -------------------------------------------------------------------------------- /apps/web/public/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/jira.svg -------------------------------------------------------------------------------- /apps/web/public/linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/linear.svg -------------------------------------------------------------------------------- /apps/web/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/logo.png -------------------------------------------------------------------------------- /apps/web/public/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/noise.png -------------------------------------------------------------------------------- /apps/web/public/portal-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/portal-preview.jpg -------------------------------------------------------------------------------- /apps/web/public/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/slack.svg -------------------------------------------------------------------------------- /apps/web/public/video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/video.jpg -------------------------------------------------------------------------------- /apps/web/public/zapier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/public/zapier.svg -------------------------------------------------------------------------------- /apps/web/scripts/skip-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/scripts/skip-ci.js -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/apps/web/vercel.json -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/biome.jsonc -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/package.json -------------------------------------------------------------------------------- /packages/analytics/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/google.ts -------------------------------------------------------------------------------- /packages/analytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/index.tsx -------------------------------------------------------------------------------- /packages/analytics/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/keys.ts -------------------------------------------------------------------------------- /packages/analytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/package.json -------------------------------------------------------------------------------- /packages/analytics/posthog/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/posthog/client.tsx -------------------------------------------------------------------------------- /packages/analytics/posthog/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/posthog/server.ts -------------------------------------------------------------------------------- /packages/analytics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/tsconfig.json -------------------------------------------------------------------------------- /packages/analytics/vercel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/analytics/vercel.ts -------------------------------------------------------------------------------- /packages/atlassian/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/atlassian/index.ts -------------------------------------------------------------------------------- /packages/atlassian/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/atlassian/package.json -------------------------------------------------------------------------------- /packages/atlassian/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/atlassian/tsconfig.json -------------------------------------------------------------------------------- /packages/atlassian/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/atlassian/types.d.ts -------------------------------------------------------------------------------- /packages/backend/auth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/actions.ts -------------------------------------------------------------------------------- /packages/backend/auth/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/client.ts -------------------------------------------------------------------------------- /packages/backend/auth/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/format.ts -------------------------------------------------------------------------------- /packages/backend/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/index.ts -------------------------------------------------------------------------------- /packages/backend/auth/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/proxy.ts -------------------------------------------------------------------------------- /packages/backend/auth/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/server.ts -------------------------------------------------------------------------------- /packages/backend/auth/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/auth/utils.ts -------------------------------------------------------------------------------- /packages/backend/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/database.ts -------------------------------------------------------------------------------- /packages/backend/hooks/use-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/hooks/use-user.ts -------------------------------------------------------------------------------- /packages/backend/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/keys.ts -------------------------------------------------------------------------------- /packages/backend/next-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/next-config.ts -------------------------------------------------------------------------------- /packages/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/package.json -------------------------------------------------------------------------------- /packages/backend/prisma.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/prisma.config.ts -------------------------------------------------------------------------------- /packages/backend/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/backend/tsconfig.json -------------------------------------------------------------------------------- /packages/canny/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/index.ts -------------------------------------------------------------------------------- /packages/canny/lib/boards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/boards.ts -------------------------------------------------------------------------------- /packages/canny/lib/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/categories.ts -------------------------------------------------------------------------------- /packages/canny/lib/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/changelog.ts -------------------------------------------------------------------------------- /packages/canny/lib/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/comments.ts -------------------------------------------------------------------------------- /packages/canny/lib/companies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/companies.ts -------------------------------------------------------------------------------- /packages/canny/lib/opportunities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/opportunities.ts -------------------------------------------------------------------------------- /packages/canny/lib/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/posts.ts -------------------------------------------------------------------------------- /packages/canny/lib/status-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/status-change.ts -------------------------------------------------------------------------------- /packages/canny/lib/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/tags.ts -------------------------------------------------------------------------------- /packages/canny/lib/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/users.ts -------------------------------------------------------------------------------- /packages/canny/lib/votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/lib/votes.ts -------------------------------------------------------------------------------- /packages/canny/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/package.json -------------------------------------------------------------------------------- /packages/canny/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canny/tsconfig.json -------------------------------------------------------------------------------- /packages/canvas/components/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canvas/components/background.tsx -------------------------------------------------------------------------------- /packages/canvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canvas/index.tsx -------------------------------------------------------------------------------- /packages/canvas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canvas/package.json -------------------------------------------------------------------------------- /packages/canvas/styles/canvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canvas/styles/canvas.css -------------------------------------------------------------------------------- /packages/canvas/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/canvas/tsconfig.json -------------------------------------------------------------------------------- /packages/design-system/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components.json -------------------------------------------------------------------------------- /packages/design-system/components/charts/area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/charts/area.tsx -------------------------------------------------------------------------------- /packages/design-system/components/charts/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/charts/bar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/charts/pie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/charts/pie.tsx -------------------------------------------------------------------------------- /packages/design-system/components/charts/radar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/charts/radar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/charts/radial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/charts/radial.tsx -------------------------------------------------------------------------------- /packages/design-system/components/climate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/climate.tsx -------------------------------------------------------------------------------- /packages/design-system/components/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/container.tsx -------------------------------------------------------------------------------- /packages/design-system/components/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/data-table-column-header.tsx -------------------------------------------------------------------------------- /packages/design-system/components/emoji-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/emoji-selector.tsx -------------------------------------------------------------------------------- /packages/design-system/components/emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/emoji.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/announcement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/announcement/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/avatar-stack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/avatar-stack/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/calendar/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/code-block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/code-block/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/code-block/server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/code-block/server.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/combobox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/combobox/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/cursor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/cursor/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/dropzone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/dropzone/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/gantt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/gantt/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/kanban/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/kanban/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/list/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/marquee/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/marquee/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/status/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/table/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/kibo-ui/video-player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/kibo-ui/video-player/index.tsx -------------------------------------------------------------------------------- /packages/design-system/components/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/link.tsx -------------------------------------------------------------------------------- /packages/design-system/components/loading-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/loading-circle.tsx -------------------------------------------------------------------------------- /packages/design-system/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/logo.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/alert-dialog.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/avatar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/breadcrumbs.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/calendar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/checkbox.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/dialog.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/input.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/select.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/skeleton.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/switch.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/textarea.tsx -------------------------------------------------------------------------------- /packages/design-system/components/precomposed/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/precomposed/tooltip.tsx -------------------------------------------------------------------------------- /packages/design-system/components/prose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/prose.tsx -------------------------------------------------------------------------------- /packages/design-system/components/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/provider.tsx -------------------------------------------------------------------------------- /packages/design-system/components/sentiment-emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/sentiment-emoji.tsx -------------------------------------------------------------------------------- /packages/design-system/components/stack-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/stack-card.tsx -------------------------------------------------------------------------------- /packages/design-system/components/stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/stepper.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/accordion.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/alert.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/avatar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/badge.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/button-group.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/calendar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/card.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/carousel.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/chart.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/command.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/dialog.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/drawer.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/empty.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/field.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/form.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/input-group.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/item.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/kbd.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/label.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/menubar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/pagination.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/popover.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/progress.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/resizable.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/separator.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/sheet.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/slider.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/sonner.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/spinner.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/switch.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/table.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/tabs.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/toggle.tsx -------------------------------------------------------------------------------- /packages/design-system/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /packages/design-system/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/components/video.tsx -------------------------------------------------------------------------------- /packages/design-system/hooks/use-copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/hooks/use-copy-to-clipboard.ts -------------------------------------------------------------------------------- /packages/design-system/hooks/use-enter-submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/hooks/use-enter-submit.ts -------------------------------------------------------------------------------- /packages/design-system/hooks/use-is-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/hooks/use-is-mobile.ts -------------------------------------------------------------------------------- /packages/design-system/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/hooks/use-mobile.ts -------------------------------------------------------------------------------- /packages/design-system/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /packages/design-system/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/hooks/use-toast.ts -------------------------------------------------------------------------------- /packages/design-system/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/lib/colors.ts -------------------------------------------------------------------------------- /packages/design-system/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/lib/fonts.ts -------------------------------------------------------------------------------- /packages/design-system/lib/handle-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/lib/handle-error.ts -------------------------------------------------------------------------------- /packages/design-system/lib/toast.ts: -------------------------------------------------------------------------------- 1 | export { toast } from 'sonner'; 2 | -------------------------------------------------------------------------------- /packages/design-system/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/lib/utils.ts -------------------------------------------------------------------------------- /packages/design-system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/package.json -------------------------------------------------------------------------------- /packages/design-system/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/postcss.config.mjs -------------------------------------------------------------------------------- /packages/design-system/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/styles/globals.css -------------------------------------------------------------------------------- /packages/design-system/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/design-system/tsconfig.json -------------------------------------------------------------------------------- /packages/editor/components/menus/bubble-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/menus/bubble-menu.tsx -------------------------------------------------------------------------------- /packages/editor/components/menus/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/menus/command-menu.tsx -------------------------------------------------------------------------------- /packages/editor/components/menus/table-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/menus/table-menu/index.tsx -------------------------------------------------------------------------------- /packages/editor/components/menus/table-menu/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/menus/table-menu/table.css -------------------------------------------------------------------------------- /packages/editor/components/plugins/ai/ai-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/ai/ai-selector.tsx -------------------------------------------------------------------------------- /packages/editor/components/plugins/ai/completion-commands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/ai/completion-commands.tsx -------------------------------------------------------------------------------- /packages/editor/components/plugins/ai/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/ai/index.tsx -------------------------------------------------------------------------------- /packages/editor/components/plugins/ai/selector-commands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/ai/selector-commands.tsx -------------------------------------------------------------------------------- /packages/editor/components/plugins/code-block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/code-block/index.ts -------------------------------------------------------------------------------- /packages/editor/components/plugins/color-highlighter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/color-highlighter/index.ts -------------------------------------------------------------------------------- /packages/editor/components/plugins/emoji/emoji-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/emoji/emoji-list.tsx -------------------------------------------------------------------------------- /packages/editor/components/plugins/emoji/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/emoji/index.ts -------------------------------------------------------------------------------- /packages/editor/components/plugins/file/file.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/file/file.css -------------------------------------------------------------------------------- /packages/editor/components/plugins/file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/file/index.ts -------------------------------------------------------------------------------- /packages/editor/components/plugins/mention/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/mention/index.ts -------------------------------------------------------------------------------- /packages/editor/components/plugins/mention/mention-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/mention/mention-list.tsx -------------------------------------------------------------------------------- /packages/editor/components/plugins/mention/mention.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/mention/mention.css -------------------------------------------------------------------------------- /packages/editor/components/plugins/suggestion-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/plugins/suggestion-list.tsx -------------------------------------------------------------------------------- /packages/editor/components/selectors/format-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/selectors/format-selector.tsx -------------------------------------------------------------------------------- /packages/editor/components/selectors/link-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/selectors/link-selector.tsx -------------------------------------------------------------------------------- /packages/editor/components/selectors/node-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/selectors/node-selector.tsx -------------------------------------------------------------------------------- /packages/editor/components/selectors/text-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/selectors/text-buttons.tsx -------------------------------------------------------------------------------- /packages/editor/components/slash-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/components/slash-command.tsx -------------------------------------------------------------------------------- /packages/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/index.tsx -------------------------------------------------------------------------------- /packages/editor/lib/extensions/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/lib/extensions/client.ts -------------------------------------------------------------------------------- /packages/editor/lib/extensions/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/lib/extensions/server.ts -------------------------------------------------------------------------------- /packages/editor/lib/generate-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/lib/generate-html.ts -------------------------------------------------------------------------------- /packages/editor/lib/jira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/lib/jira.ts -------------------------------------------------------------------------------- /packages/editor/lib/tiptap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/lib/tiptap.ts -------------------------------------------------------------------------------- /packages/editor/lib/upload-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/lib/upload-file.ts -------------------------------------------------------------------------------- /packages/editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/package.json -------------------------------------------------------------------------------- /packages/editor/styles/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/styles/editor.css -------------------------------------------------------------------------------- /packages/editor/templates/atlassian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/templates/atlassian.json -------------------------------------------------------------------------------- /packages/editor/templates/loom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/templates/loom.json -------------------------------------------------------------------------------- /packages/editor/templates/notion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/templates/notion.json -------------------------------------------------------------------------------- /packages/editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/editor/tsconfig.json -------------------------------------------------------------------------------- /packages/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/index.ts -------------------------------------------------------------------------------- /packages/email/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/keys.ts -------------------------------------------------------------------------------- /packages/email/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/package.json -------------------------------------------------------------------------------- /packages/email/templates/forgot-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/templates/forgot-password.tsx -------------------------------------------------------------------------------- /packages/email/templates/initiative-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/templates/initiative-update.tsx -------------------------------------------------------------------------------- /packages/email/templates/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/templates/layout.tsx -------------------------------------------------------------------------------- /packages/email/templates/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/templates/sign-in.tsx -------------------------------------------------------------------------------- /packages/email/templates/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/templates/sign-up.tsx -------------------------------------------------------------------------------- /packages/email/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/email/tsconfig.json -------------------------------------------------------------------------------- /packages/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/github/index.ts -------------------------------------------------------------------------------- /packages/github/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/github/keys.ts -------------------------------------------------------------------------------- /packages/github/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/github/package.json -------------------------------------------------------------------------------- /packages/github/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/github/tsconfig.json -------------------------------------------------------------------------------- /packages/github/webhooks.ts: -------------------------------------------------------------------------------- 1 | export * from "@octokit/webhooks"; 2 | -------------------------------------------------------------------------------- /packages/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/package.json -------------------------------------------------------------------------------- /packages/lib/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/consts.ts -------------------------------------------------------------------------------- /packages/lib/src/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/email.ts -------------------------------------------------------------------------------- /packages/lib/src/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/format.ts -------------------------------------------------------------------------------- /packages/lib/src/fuse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/fuse.ts -------------------------------------------------------------------------------- /packages/lib/src/gravatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/gravatar.ts -------------------------------------------------------------------------------- /packages/lib/src/parse-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/parse-error.ts -------------------------------------------------------------------------------- /packages/lib/src/slugify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/src/slugify.ts -------------------------------------------------------------------------------- /packages/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/lib/tsconfig.json -------------------------------------------------------------------------------- /packages/linear/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@linear/sdk"; 2 | -------------------------------------------------------------------------------- /packages/linear/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/linear/package.json -------------------------------------------------------------------------------- /packages/linear/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/linear/tsconfig.json -------------------------------------------------------------------------------- /packages/next-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/next-config/index.ts -------------------------------------------------------------------------------- /packages/next-config/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/next-config/keys.ts -------------------------------------------------------------------------------- /packages/next-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/next-config/package.json -------------------------------------------------------------------------------- /packages/next-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/next-config/tsconfig.json -------------------------------------------------------------------------------- /packages/observability/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/client.ts -------------------------------------------------------------------------------- /packages/observability/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/error.ts -------------------------------------------------------------------------------- /packages/observability/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/instrumentation.ts -------------------------------------------------------------------------------- /packages/observability/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/keys.ts -------------------------------------------------------------------------------- /packages/observability/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/log.ts -------------------------------------------------------------------------------- /packages/observability/next-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/next-config.ts -------------------------------------------------------------------------------- /packages/observability/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/package.json -------------------------------------------------------------------------------- /packages/observability/status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/status/index.tsx -------------------------------------------------------------------------------- /packages/observability/status/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/status/types.ts -------------------------------------------------------------------------------- /packages/observability/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/observability/tsconfig.json -------------------------------------------------------------------------------- /packages/payments/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/payments/ai.ts -------------------------------------------------------------------------------- /packages/payments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/payments/index.ts -------------------------------------------------------------------------------- /packages/payments/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/payments/keys.ts -------------------------------------------------------------------------------- /packages/payments/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/payments/package.json -------------------------------------------------------------------------------- /packages/payments/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/payments/tsconfig.json -------------------------------------------------------------------------------- /packages/productboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/productboard/index.ts -------------------------------------------------------------------------------- /packages/productboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/productboard/package.json -------------------------------------------------------------------------------- /packages/productboard/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/productboard/schema.json -------------------------------------------------------------------------------- /packages/productboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/productboard/tsconfig.json -------------------------------------------------------------------------------- /packages/productboard/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/productboard/types.d.ts -------------------------------------------------------------------------------- /packages/seo/json-ld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/seo/json-ld.tsx -------------------------------------------------------------------------------- /packages/seo/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/seo/metadata.ts -------------------------------------------------------------------------------- /packages/seo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/seo/package.json -------------------------------------------------------------------------------- /packages/seo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/seo/tsconfig.json -------------------------------------------------------------------------------- /packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/typescript-config/base.json -------------------------------------------------------------------------------- /packages/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/typescript-config/nextjs.json -------------------------------------------------------------------------------- /packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/typescript-config/package.json -------------------------------------------------------------------------------- /packages/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/typescript-config/react-library.json -------------------------------------------------------------------------------- /packages/widget/components/dynamic-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/components/dynamic-icon.tsx -------------------------------------------------------------------------------- /packages/widget/components/widget-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/components/widget-footer.tsx -------------------------------------------------------------------------------- /packages/widget/components/widget-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/components/widget-group.tsx -------------------------------------------------------------------------------- /packages/widget/components/widget-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/components/widget-item.tsx -------------------------------------------------------------------------------- /packages/widget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/index.tsx -------------------------------------------------------------------------------- /packages/widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/package.json -------------------------------------------------------------------------------- /packages/widget/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/packages/widget/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/supabase/config.toml -------------------------------------------------------------------------------- /supabase/templates/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/supabase/templates/confirmation.html -------------------------------------------------------------------------------- /supabase/templates/magic_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/supabase/templates/magic_link.html -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/eververse/HEAD/turbo.json --------------------------------------------------------------------------------