├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── README.md ├── app ├── (auth) │ ├── auth │ │ └── page.tsx │ └── layout.tsx ├── (marketing) │ └── page.tsx ├── (preview) │ └── preview │ │ └── [documentId] │ │ └── page.tsx ├── (workspace) │ └── workspace │ │ ├── [workspaceId] │ │ ├── document │ │ │ └── [documentId] │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ │ └── page.tsx ├── api │ ├── edgestore │ │ └── [...edgestore] │ │ │ └── route.ts │ └── upload │ │ └── route.ts ├── error.tsx ├── globals.css ├── layout.tsx └── not-found.tsx ├── bun.lockb ├── components.json ├── components ├── auth │ ├── auth-screen.tsx │ ├── github-logo.tsx │ ├── google-logo.tsx │ ├── signin-card.tsx │ ├── signup-card.tsx │ └── user-button.tsx ├── document │ ├── banner.tsx │ ├── cover-image.tsx │ ├── editor.tsx │ ├── icon-picker.tsx │ ├── menu-button.tsx │ ├── publish-button.tsx │ ├── sidebar │ │ ├── document-item.tsx │ │ ├── document-sidebar.tsx │ │ ├── mobile-sidebar.tsx │ │ ├── new-page-button.tsx │ │ ├── search-button.tsx │ │ ├── setting-button.tsx │ │ ├── trash-box.tsx │ │ └── user-menu.tsx │ ├── title.tsx │ └── toolbar.tsx ├── editor │ ├── color-selector.tsx │ ├── extensions.ts │ ├── generative-menu-switch.tsx │ ├── image-upload.ts │ ├── link-selector.tsx │ ├── node-selector.tsx │ ├── slash-command.tsx │ └── text-buttons.tsx ├── landing │ ├── companies.tsx │ ├── features-vertical.tsx │ ├── hero.tsx │ ├── how-it-works.tsx │ ├── navbar.tsx │ ├── open-source.tsx │ ├── problems.tsx │ ├── safari.tsx │ ├── section.tsx │ ├── solution.tsx │ └── testimonials.tsx ├── modals │ ├── confirm-modal.tsx │ └── image-upload-modal.tsx ├── providers │ ├── convex-provider.tsx │ └── theme-provider.tsx ├── single-image-dropzone.tsx ├── spinner.tsx ├── theme-toggle.tsx ├── ui │ ├── alert-dialog.tsx │ ├── avatar.tsx │ ├── blur-fade.tsx │ ├── button.tsx │ ├── card.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── flickering-grid.tsx │ ├── grid-pattern.tsx │ ├── hero-video-dialog.tsx │ ├── input.tsx │ ├── label.tsx │ ├── marquee.tsx │ ├── popover.tsx │ ├── ripple.tsx │ ├── scroll-area.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ └── tooltip.tsx └── workspace │ ├── action-tooltip.tsx │ ├── create-workspace-button.tsx │ ├── navigation-item.tsx │ └── workspace-sidebar.tsx ├── convex ├── README.md ├── _generated │ ├── api.d.ts │ ├── api.js │ ├── dataModel.d.ts │ ├── server.d.ts │ └── server.js ├── auth.config.ts ├── auth.ts ├── documents.ts ├── http.ts ├── schema.ts ├── tsconfig.json └── user.ts ├── hooks ├── use-current-user.ts ├── use-origin.tsx └── use-scroll-top.tsx ├── lib ├── constants.ts ├── edgestore.ts ├── use-sidebar-store.ts └── utils.ts ├── license.md ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── document.png ├── herosection-dark-image.png ├── herosection-image.png ├── logo-dark.svg ├── logo.svg ├── next.svg ├── not-found.png ├── thumbnail.png └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(auth)/auth/page.tsx -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /app/(preview)/preview/[documentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(preview)/preview/[documentId]/page.tsx -------------------------------------------------------------------------------- /app/(workspace)/workspace/[workspaceId]/document/[documentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(workspace)/workspace/[workspaceId]/document/[documentId]/page.tsx -------------------------------------------------------------------------------- /app/(workspace)/workspace/[workspaceId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(workspace)/workspace/[workspaceId]/layout.tsx -------------------------------------------------------------------------------- /app/(workspace)/workspace/[workspaceId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(workspace)/workspace/[workspaceId]/page.tsx -------------------------------------------------------------------------------- /app/(workspace)/workspace/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/(workspace)/workspace/page.tsx -------------------------------------------------------------------------------- /app/api/edgestore/[...edgestore]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/api/edgestore/[...edgestore]/route.ts -------------------------------------------------------------------------------- /app/api/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/api/upload/route.ts -------------------------------------------------------------------------------- /app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/error.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components.json -------------------------------------------------------------------------------- /components/auth/auth-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/auth/auth-screen.tsx -------------------------------------------------------------------------------- /components/auth/github-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/auth/github-logo.tsx -------------------------------------------------------------------------------- /components/auth/google-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/auth/google-logo.tsx -------------------------------------------------------------------------------- /components/auth/signin-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/auth/signin-card.tsx -------------------------------------------------------------------------------- /components/auth/signup-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/auth/signup-card.tsx -------------------------------------------------------------------------------- /components/auth/user-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/auth/user-button.tsx -------------------------------------------------------------------------------- /components/document/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/banner.tsx -------------------------------------------------------------------------------- /components/document/cover-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/cover-image.tsx -------------------------------------------------------------------------------- /components/document/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/editor.tsx -------------------------------------------------------------------------------- /components/document/icon-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/icon-picker.tsx -------------------------------------------------------------------------------- /components/document/menu-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/menu-button.tsx -------------------------------------------------------------------------------- /components/document/publish-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/publish-button.tsx -------------------------------------------------------------------------------- /components/document/sidebar/document-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/document-item.tsx -------------------------------------------------------------------------------- /components/document/sidebar/document-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/document-sidebar.tsx -------------------------------------------------------------------------------- /components/document/sidebar/mobile-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/mobile-sidebar.tsx -------------------------------------------------------------------------------- /components/document/sidebar/new-page-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/new-page-button.tsx -------------------------------------------------------------------------------- /components/document/sidebar/search-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/search-button.tsx -------------------------------------------------------------------------------- /components/document/sidebar/setting-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/setting-button.tsx -------------------------------------------------------------------------------- /components/document/sidebar/trash-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/trash-box.tsx -------------------------------------------------------------------------------- /components/document/sidebar/user-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/sidebar/user-menu.tsx -------------------------------------------------------------------------------- /components/document/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/title.tsx -------------------------------------------------------------------------------- /components/document/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/document/toolbar.tsx -------------------------------------------------------------------------------- /components/editor/color-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/color-selector.tsx -------------------------------------------------------------------------------- /components/editor/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/extensions.ts -------------------------------------------------------------------------------- /components/editor/generative-menu-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/generative-menu-switch.tsx -------------------------------------------------------------------------------- /components/editor/image-upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/image-upload.ts -------------------------------------------------------------------------------- /components/editor/link-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/link-selector.tsx -------------------------------------------------------------------------------- /components/editor/node-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/node-selector.tsx -------------------------------------------------------------------------------- /components/editor/slash-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/slash-command.tsx -------------------------------------------------------------------------------- /components/editor/text-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/editor/text-buttons.tsx -------------------------------------------------------------------------------- /components/landing/companies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/companies.tsx -------------------------------------------------------------------------------- /components/landing/features-vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/features-vertical.tsx -------------------------------------------------------------------------------- /components/landing/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/hero.tsx -------------------------------------------------------------------------------- /components/landing/how-it-works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/how-it-works.tsx -------------------------------------------------------------------------------- /components/landing/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/navbar.tsx -------------------------------------------------------------------------------- /components/landing/open-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/open-source.tsx -------------------------------------------------------------------------------- /components/landing/problems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/problems.tsx -------------------------------------------------------------------------------- /components/landing/safari.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/safari.tsx -------------------------------------------------------------------------------- /components/landing/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/section.tsx -------------------------------------------------------------------------------- /components/landing/solution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/solution.tsx -------------------------------------------------------------------------------- /components/landing/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/landing/testimonials.tsx -------------------------------------------------------------------------------- /components/modals/confirm-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/modals/confirm-modal.tsx -------------------------------------------------------------------------------- /components/modals/image-upload-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/modals/image-upload-modal.tsx -------------------------------------------------------------------------------- /components/providers/convex-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/providers/convex-provider.tsx -------------------------------------------------------------------------------- /components/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/providers/theme-provider.tsx -------------------------------------------------------------------------------- /components/single-image-dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/single-image-dropzone.tsx -------------------------------------------------------------------------------- /components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/spinner.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/blur-fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/blur-fade.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/flickering-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/flickering-grid.tsx -------------------------------------------------------------------------------- /components/ui/grid-pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/grid-pattern.tsx -------------------------------------------------------------------------------- /components/ui/hero-video-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/hero-video-dialog.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/marquee.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/ripple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/ripple.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/workspace/action-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/workspace/action-tooltip.tsx -------------------------------------------------------------------------------- /components/workspace/create-workspace-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/workspace/create-workspace-button.tsx -------------------------------------------------------------------------------- /components/workspace/navigation-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/workspace/navigation-item.tsx -------------------------------------------------------------------------------- /components/workspace/workspace-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/components/workspace/workspace-sidebar.tsx -------------------------------------------------------------------------------- /convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/README.md -------------------------------------------------------------------------------- /convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/_generated/api.js -------------------------------------------------------------------------------- /convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/_generated/server.js -------------------------------------------------------------------------------- /convex/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/auth.config.ts -------------------------------------------------------------------------------- /convex/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/auth.ts -------------------------------------------------------------------------------- /convex/documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/documents.ts -------------------------------------------------------------------------------- /convex/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/http.ts -------------------------------------------------------------------------------- /convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/schema.ts -------------------------------------------------------------------------------- /convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/tsconfig.json -------------------------------------------------------------------------------- /convex/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/convex/user.ts -------------------------------------------------------------------------------- /hooks/use-current-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/hooks/use-current-user.ts -------------------------------------------------------------------------------- /hooks/use-origin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/hooks/use-origin.tsx -------------------------------------------------------------------------------- /hooks/use-scroll-top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/hooks/use-scroll-top.tsx -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/edgestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/lib/edgestore.ts -------------------------------------------------------------------------------- /lib/use-sidebar-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/lib/use-sidebar-store.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/license.md -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/document.png -------------------------------------------------------------------------------- /public/herosection-dark-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/herosection-dark-image.png -------------------------------------------------------------------------------- /public/herosection-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/herosection-image.png -------------------------------------------------------------------------------- /public/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/logo-dark.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/not-found.png -------------------------------------------------------------------------------- /public/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/thumbnail.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdtriedcoding/noted/HEAD/tsconfig.json --------------------------------------------------------------------------------