├── .env.example ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── automerge.yml │ ├── images.yml │ └── notfoundbot.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── .stylelintrc ├── .vercelignore ├── LICENSE ├── README.md ├── eslint.config.js ├── loadtest.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma ├── migrations │ ├── 20250830194422_init │ │ └── migration.sql │ └── migration_lock.toml ├── migrations_mysql_old │ ├── 20211018170715_init │ │ └── migration.sql │ ├── 20211026140558_add_geo │ │ └── migration.sql │ ├── 20211228134321_remove_fks │ │ └── migration.sql │ └── migration_lock.toml ├── schema.prisma └── seed.ts ├── public └── static │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ ├── iAWriterQuattroS-Bold.woff │ ├── iAWriterQuattroS-Bold.woff2 │ ├── iAWriterQuattroS-BoldItalic.woff │ ├── iAWriterQuattroS-BoldItalic.woff2 │ ├── iAWriterQuattroS-Italic.woff │ ├── iAWriterQuattroS-Italic.woff2 │ ├── iAWriterQuattroS-Regular.woff │ ├── iAWriterQuattroS-Regular.woff2 │ ├── iAWriterQuattroV-Italic.ttf │ └── iAWriterQuattroV.ttf │ └── meta │ ├── ama.png │ ├── apple-touch-icon.png │ ├── google-touch-icon.png │ ├── manifest.json │ ├── mask-icon.svg │ └── og-image.png ├── renovate.json ├── src ├── .gitignore ├── components │ ├── AMAQuestions │ │ ├── AskQuestion.tsx │ │ ├── EditQuestion.tsx │ │ ├── PendingQuestions.tsx │ │ ├── QuestionItem.tsx │ │ ├── QuestionReaction.tsx │ │ └── index.tsx │ ├── Alert │ │ └── index.tsx │ ├── AudioPlayer │ │ ├── HiddenAudioPlayer.tsx │ │ ├── PlayPauseButton.tsx │ │ ├── ProgressOverlay.tsx │ │ ├── Waveform.tsx │ │ └── index.tsx │ ├── AudioRecorder │ │ └── index.tsx │ ├── Button │ │ └── index.tsx │ ├── Card │ │ └── index.tsx │ ├── Divider │ │ └── index.tsx │ ├── Footer │ │ └── index.tsx │ ├── FullscreenLoading │ │ └── index.tsx │ ├── Header │ │ └── index.tsx │ ├── Highlighter │ │ └── index.tsx │ ├── Icon │ │ └── index.tsx │ ├── Input │ │ └── index.tsx │ ├── Layouts │ │ └── index.tsx │ ├── Linkify │ │ └── index.tsx │ ├── LoadingSpinner │ │ └── index.tsx │ ├── MarkdownRenderer │ │ └── index.tsx │ ├── Page │ │ └── index.tsx │ ├── Providers │ │ ├── ReactQuery.tsx │ │ ├── SEO.tsx │ │ ├── Toaster.tsx │ │ └── index.tsx │ ├── SyntaxHighlighter │ │ └── index.tsx │ └── Theme │ │ ├── colors.ts │ │ └── index.ts ├── config │ ├── routes.ts │ └── seo.ts ├── lib │ ├── api.ts │ ├── cloudinary.ts │ └── prisma.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── answers │ │ │ └── sign.ts │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ ├── questions │ │ │ ├── [id] │ │ │ │ ├── index.ts │ │ │ │ └── reactions.ts │ │ │ └── index.ts │ │ └── visitors │ │ │ └── index.ts │ └── index.tsx ├── styles │ ├── globals.css │ ├── prose-styles.css │ └── syntax-highlighting.css └── types │ ├── Ama.ts │ ├── Upload.ts │ └── next-auth.d.ts ├── tailwind.config.js ├── tsconfig.json └── vercel.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.env.example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## Changes since last release 3 | 4 | $CHANGES 5 | -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.github/workflows/images.yml -------------------------------------------------------------------------------- /.github/workflows/notfoundbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.github/workflows/notfoundbot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/eslint.config.js -------------------------------------------------------------------------------- /loadtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/loadtest.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/migrations/20250830194422_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/migrations/20250830194422_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/migrations_mysql_old/20211018170715_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/migrations_mysql_old/20211018170715_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations_mysql_old/20211026140558_add_geo/migration.sql: -------------------------------------------------------------------------------- 1 | -- AlterTable 2 | ALTER TABLE `Visitor` ADD COLUMN `geo` JSON NULL; 3 | -------------------------------------------------------------------------------- /prisma/migrations_mysql_old/20211228134321_remove_fks/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/migrations_mysql_old/20211228134321_remove_fks/migration.sql -------------------------------------------------------------------------------- /prisma/migrations_mysql_old/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/migrations_mysql_old/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /public/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/favicon-32x32.png -------------------------------------------------------------------------------- /public/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/favicon.ico -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-Bold.woff -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-Bold.woff2 -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-BoldItalic.woff -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-Italic.woff -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-Italic.woff2 -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-Regular.woff -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroS-Regular.woff2 -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroV-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroV-Italic.ttf -------------------------------------------------------------------------------- /public/static/fonts/iAWriterQuattroV.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/fonts/iAWriterQuattroV.ttf -------------------------------------------------------------------------------- /public/static/meta/ama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/meta/ama.png -------------------------------------------------------------------------------- /public/static/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /public/static/meta/google-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/meta/google-touch-icon.png -------------------------------------------------------------------------------- /public/static/meta/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/meta/manifest.json -------------------------------------------------------------------------------- /public/static/meta/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/meta/mask-icon.svg -------------------------------------------------------------------------------- /public/static/meta/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/public/static/meta/og-image.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/renovate.json -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/components/AMAQuestions/AskQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AMAQuestions/AskQuestion.tsx -------------------------------------------------------------------------------- /src/components/AMAQuestions/EditQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AMAQuestions/EditQuestion.tsx -------------------------------------------------------------------------------- /src/components/AMAQuestions/PendingQuestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AMAQuestions/PendingQuestions.tsx -------------------------------------------------------------------------------- /src/components/AMAQuestions/QuestionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AMAQuestions/QuestionItem.tsx -------------------------------------------------------------------------------- /src/components/AMAQuestions/QuestionReaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AMAQuestions/QuestionReaction.tsx -------------------------------------------------------------------------------- /src/components/AMAQuestions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AMAQuestions/index.tsx -------------------------------------------------------------------------------- /src/components/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Alert/index.tsx -------------------------------------------------------------------------------- /src/components/AudioPlayer/HiddenAudioPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AudioPlayer/HiddenAudioPlayer.tsx -------------------------------------------------------------------------------- /src/components/AudioPlayer/PlayPauseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AudioPlayer/PlayPauseButton.tsx -------------------------------------------------------------------------------- /src/components/AudioPlayer/ProgressOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AudioPlayer/ProgressOverlay.tsx -------------------------------------------------------------------------------- /src/components/AudioPlayer/Waveform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AudioPlayer/Waveform.tsx -------------------------------------------------------------------------------- /src/components/AudioPlayer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AudioPlayer/index.tsx -------------------------------------------------------------------------------- /src/components/AudioRecorder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/AudioRecorder/index.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Card/index.tsx -------------------------------------------------------------------------------- /src/components/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Divider/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/FullscreenLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/FullscreenLoading/index.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Highlighter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Highlighter/index.tsx -------------------------------------------------------------------------------- /src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Input/index.tsx -------------------------------------------------------------------------------- /src/components/Layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Layouts/index.tsx -------------------------------------------------------------------------------- /src/components/Linkify/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Linkify/index.tsx -------------------------------------------------------------------------------- /src/components/LoadingSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/LoadingSpinner/index.tsx -------------------------------------------------------------------------------- /src/components/MarkdownRenderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/MarkdownRenderer/index.tsx -------------------------------------------------------------------------------- /src/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Page/index.tsx -------------------------------------------------------------------------------- /src/components/Providers/ReactQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Providers/ReactQuery.tsx -------------------------------------------------------------------------------- /src/components/Providers/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Providers/SEO.tsx -------------------------------------------------------------------------------- /src/components/Providers/Toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Providers/Toaster.tsx -------------------------------------------------------------------------------- /src/components/Providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Providers/index.tsx -------------------------------------------------------------------------------- /src/components/SyntaxHighlighter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/SyntaxHighlighter/index.tsx -------------------------------------------------------------------------------- /src/components/Theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Theme/colors.ts -------------------------------------------------------------------------------- /src/components/Theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/components/Theme/index.ts -------------------------------------------------------------------------------- /src/config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/config/routes.ts -------------------------------------------------------------------------------- /src/config/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/config/seo.ts -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/cloudinary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/lib/cloudinary.ts -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/answers/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/api/answers/sign.ts -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/api/questions/[id]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/api/questions/[id]/index.ts -------------------------------------------------------------------------------- /src/pages/api/questions/[id]/reactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/api/questions/[id]/reactions.ts -------------------------------------------------------------------------------- /src/pages/api/questions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/api/questions/index.ts -------------------------------------------------------------------------------- /src/pages/api/visitors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/api/visitors/index.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/prose-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/styles/prose-styles.css -------------------------------------------------------------------------------- /src/styles/syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/styles/syntax-highlighting.css -------------------------------------------------------------------------------- /src/types/Ama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/types/Ama.ts -------------------------------------------------------------------------------- /src/types/Upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/types/Upload.ts -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2color/voice-ama/HEAD/vercel.json --------------------------------------------------------------------------------