├── .devcontainer ├── devcontainer.json └── local │ ├── deprecated-Dockerfile │ └── deprecated-devcontainer.json ├── .ellipsis └── sandboxes │ ├── default.Dockerfile │ └── default.yaml ├── .eslintrc.json ├── .github └── workflows │ └── playwright.yml ├── .gitignore ├── .gitpod.yml ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── devcontainer.Dockerfile ├── doppler.yaml ├── ellipsis.yaml ├── migrations └── 0001_create_users_forms_responses.sql ├── next.config.js ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── public ├── favicon.ico └── talkform.png ├── robots.txt ├── src ├── components │ ├── GoogleAnalytics.tsx │ ├── auth │ │ ├── ErrorAlert.tsx │ │ ├── SignInForm.tsx │ │ └── SignUpForm.tsx │ ├── chat.tsx │ ├── home │ │ ├── DashboardMode.tsx │ │ ├── ErrorMode.tsx │ │ ├── NavBar.tsx │ │ ├── Spinner.tsx │ │ └── modes │ │ │ └── ResponsesTable.tsx │ ├── landing │ │ ├── Team.tsx │ │ ├── TeamMember.ts │ │ └── samples.tsx │ ├── layout │ │ └── Page.tsx │ ├── misc.tsx │ ├── posthog.tsx │ └── talkform.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── about.tsx │ ├── api │ │ └── llm.ts │ ├── auth.tsx │ ├── contact.tsx │ ├── forms │ │ ├── [id].tsx │ │ ├── fill │ │ │ └── [id].tsx │ │ └── new.tsx │ ├── home.tsx │ ├── index.tsx │ └── settings.tsx ├── prompts.ts ├── styles │ └── globals.css ├── types.ts └── utils.ts ├── tailwind.config.ts ├── tests └── form-fill.spec.ts ├── tsconfig.json ├── types └── supabase.ts └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/local/deprecated-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.devcontainer/local/deprecated-Dockerfile -------------------------------------------------------------------------------- /.devcontainer/local/deprecated-devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.devcontainer/local/deprecated-devcontainer.json -------------------------------------------------------------------------------- /.ellipsis/sandboxes/default.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.ellipsis/sandboxes/default.Dockerfile -------------------------------------------------------------------------------- /.ellipsis/sandboxes/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.ellipsis/sandboxes/default.yaml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/README.md -------------------------------------------------------------------------------- /devcontainer.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/devcontainer.Dockerfile -------------------------------------------------------------------------------- /doppler.yaml: -------------------------------------------------------------------------------- 1 | setup: 2 | project: talk-form-ai 3 | config: dev 4 | -------------------------------------------------------------------------------- /ellipsis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/ellipsis.yaml -------------------------------------------------------------------------------- /migrations/0001_create_users_forms_responses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/migrations/0001_create_users_forms_responses.sql -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/talkform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/public/talkform.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/components/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /src/components/auth/ErrorAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/auth/ErrorAlert.tsx -------------------------------------------------------------------------------- /src/components/auth/SignInForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/auth/SignInForm.tsx -------------------------------------------------------------------------------- /src/components/auth/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/auth/SignUpForm.tsx -------------------------------------------------------------------------------- /src/components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/chat.tsx -------------------------------------------------------------------------------- /src/components/home/DashboardMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/home/DashboardMode.tsx -------------------------------------------------------------------------------- /src/components/home/ErrorMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/home/ErrorMode.tsx -------------------------------------------------------------------------------- /src/components/home/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/home/NavBar.tsx -------------------------------------------------------------------------------- /src/components/home/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/home/Spinner.tsx -------------------------------------------------------------------------------- /src/components/home/modes/ResponsesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/home/modes/ResponsesTable.tsx -------------------------------------------------------------------------------- /src/components/landing/Team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/landing/Team.tsx -------------------------------------------------------------------------------- /src/components/landing/TeamMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/landing/TeamMember.ts -------------------------------------------------------------------------------- /src/components/landing/samples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/landing/samples.tsx -------------------------------------------------------------------------------- /src/components/layout/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/layout/Page.tsx -------------------------------------------------------------------------------- /src/components/misc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/misc.tsx -------------------------------------------------------------------------------- /src/components/posthog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/posthog.tsx -------------------------------------------------------------------------------- /src/components/talkform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/components/talkform.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/api/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/api/llm.ts -------------------------------------------------------------------------------- /src/pages/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/auth.tsx -------------------------------------------------------------------------------- /src/pages/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/contact.tsx -------------------------------------------------------------------------------- /src/pages/forms/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/forms/[id].tsx -------------------------------------------------------------------------------- /src/pages/forms/fill/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/forms/fill/[id].tsx -------------------------------------------------------------------------------- /src/pages/forms/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/forms/new.tsx -------------------------------------------------------------------------------- /src/pages/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/home.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/pages/settings.tsx -------------------------------------------------------------------------------- /src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/prompts.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tests/form-fill.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/tests/form-fill.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/types/supabase.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsbradford/TalkFormAI/HEAD/yarn.lock --------------------------------------------------------------------------------