├── .example.env ├── .gitignore ├── .prettierrc ├── README.md ├── app ├── ConvexClientProvider.tsx ├── auth.ts ├── dashboard │ ├── action-items │ │ ├── ais.tsx │ │ └── page.tsx │ ├── dashboard.tsx │ ├── layout.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx ├── record │ └── page.tsx └── recording │ └── [id] │ ├── page.tsx │ └── recording.tsx ├── components ├── pages │ ├── dashboard │ │ └── RecordedfileItemCard.tsx │ ├── home │ │ ├── Banner.tsx │ │ └── DeviceSection.tsx │ └── recording │ │ ├── RecordingDesktop.tsx │ │ └── RecordingMobile.tsx ├── preloading.tsx └── ui │ ├── Footer.tsx │ ├── Header.tsx │ ├── UserNav.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── dropdown-menu.tsx │ └── input.tsx ├── convex ├── README.md ├── _generated │ ├── api.d.ts │ ├── api.js │ ├── dataModel.d.ts │ ├── server.d.ts │ └── server.js ├── auth.config.js ├── notes.ts ├── schema.ts ├── together.ts ├── tsconfig.json ├── utils.ts └── whisper.ts ├── lib └── utils.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── icons │ ├── delete.svg │ ├── file_symbol.svg │ ├── get-started.svg │ ├── mic_plus.svg │ ├── nonrecording_mic.svg │ ├── recording_mic.svg │ └── search.svg ├── images │ ├── dashboard.png │ ├── desktop-2.png │ ├── mobile.png │ ├── og-image.png │ └── profile.jpeg └── logo.svg ├── styles └── fonts │ └── Lexend-VariableFont_wght.ttf ├── tailwind.config.ts └── tsconfig.json /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/README.md -------------------------------------------------------------------------------- /app/ConvexClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/ConvexClientProvider.tsx -------------------------------------------------------------------------------- /app/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/auth.ts -------------------------------------------------------------------------------- /app/dashboard/action-items/ais.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/dashboard/action-items/ais.tsx -------------------------------------------------------------------------------- /app/dashboard/action-items/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/dashboard/action-items/page.tsx -------------------------------------------------------------------------------- /app/dashboard/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/dashboard/dashboard.tsx -------------------------------------------------------------------------------- /app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/record/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/record/page.tsx -------------------------------------------------------------------------------- /app/recording/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/recording/[id]/page.tsx -------------------------------------------------------------------------------- /app/recording/[id]/recording.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/app/recording/[id]/recording.tsx -------------------------------------------------------------------------------- /components/pages/dashboard/RecordedfileItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/pages/dashboard/RecordedfileItemCard.tsx -------------------------------------------------------------------------------- /components/pages/home/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/pages/home/Banner.tsx -------------------------------------------------------------------------------- /components/pages/home/DeviceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/pages/home/DeviceSection.tsx -------------------------------------------------------------------------------- /components/pages/recording/RecordingDesktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/pages/recording/RecordingDesktop.tsx -------------------------------------------------------------------------------- /components/pages/recording/RecordingMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/pages/recording/RecordingMobile.tsx -------------------------------------------------------------------------------- /components/preloading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/preloading.tsx -------------------------------------------------------------------------------- /components/ui/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/Footer.tsx -------------------------------------------------------------------------------- /components/ui/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/Header.tsx -------------------------------------------------------------------------------- /components/ui/UserNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/UserNav.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/README.md -------------------------------------------------------------------------------- /convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/_generated/api.js -------------------------------------------------------------------------------- /convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/_generated/server.js -------------------------------------------------------------------------------- /convex/auth.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/auth.config.js -------------------------------------------------------------------------------- /convex/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/notes.ts -------------------------------------------------------------------------------- /convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/schema.ts -------------------------------------------------------------------------------- /convex/together.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/together.ts -------------------------------------------------------------------------------- /convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/tsconfig.json -------------------------------------------------------------------------------- /convex/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/utils.ts -------------------------------------------------------------------------------- /convex/whisper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/convex/whisper.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/delete.svg -------------------------------------------------------------------------------- /public/icons/file_symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/file_symbol.svg -------------------------------------------------------------------------------- /public/icons/get-started.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/get-started.svg -------------------------------------------------------------------------------- /public/icons/mic_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/mic_plus.svg -------------------------------------------------------------------------------- /public/icons/nonrecording_mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/nonrecording_mic.svg -------------------------------------------------------------------------------- /public/icons/recording_mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/recording_mic.svg -------------------------------------------------------------------------------- /public/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/icons/search.svg -------------------------------------------------------------------------------- /public/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/images/dashboard.png -------------------------------------------------------------------------------- /public/images/desktop-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/images/desktop-2.png -------------------------------------------------------------------------------- /public/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/images/mobile.png -------------------------------------------------------------------------------- /public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/images/og-image.png -------------------------------------------------------------------------------- /public/images/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/images/profile.jpeg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/public/logo.svg -------------------------------------------------------------------------------- /styles/fonts/Lexend-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/styles/fonts/Lexend-VariableFont_wght.ttf -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnl/noteGPT/HEAD/tsconfig.json --------------------------------------------------------------------------------