├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public └── profile-pic.png ├── src └── app │ ├── api │ └── v1 │ │ ├── deepgram │ │ └── route.ts │ │ └── groq │ │ └── route.ts │ ├── components │ ├── SpeechAnimation.css │ ├── audio-widget.tsx │ ├── controls.tsx │ ├── speech-animation.tsx │ └── utils │ │ └── utils.ts │ ├── favicon.ico │ ├── globals.css │ ├── hooks │ ├── useSpeechRecognition.ts │ └── utils │ │ └── utils.ts │ ├── layout.tsx │ └── page.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/public/profile-pic.png -------------------------------------------------------------------------------- /src/app/api/v1/deepgram/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/api/v1/deepgram/route.ts -------------------------------------------------------------------------------- /src/app/api/v1/groq/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/api/v1/groq/route.ts -------------------------------------------------------------------------------- /src/app/components/SpeechAnimation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/components/SpeechAnimation.css -------------------------------------------------------------------------------- /src/app/components/audio-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/components/audio-widget.tsx -------------------------------------------------------------------------------- /src/app/components/controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/components/controls.tsx -------------------------------------------------------------------------------- /src/app/components/speech-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/components/speech-animation.tsx -------------------------------------------------------------------------------- /src/app/components/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/components/utils/utils.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/hooks/useSpeechRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/hooks/useSpeechRecognition.ts -------------------------------------------------------------------------------- /src/app/hooks/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/hooks/utils/utils.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ejb503/ai-voice-generation/HEAD/tsconfig.json --------------------------------------------------------------------------------