├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── convex ├── README.md ├── _generated │ ├── api.d.ts │ ├── api.js │ ├── dataModel.d.ts │ ├── server.d.ts │ └── server.js ├── auth.config.ts ├── http.ts ├── plans.ts ├── schema.ts ├── tsconfig.json └── users.ts ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── ai-avatar.png ├── hero-ai.png ├── hero-ai2.png ├── hero-ai3.png └── screenshot-for-readme.png ├── src ├── app │ ├── (auth) │ │ ├── sign-in │ │ │ └── [[...sign-in]] │ │ │ │ └── page.tsx │ │ └── sign-up │ │ │ └── [[...sign-up]] │ │ │ └── page.tsx │ ├── favicon.ico │ ├── generate-program │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── profile │ │ └── page.tsx ├── components │ ├── CornerElements.tsx │ ├── Footer.tsx │ ├── Navbar.tsx │ ├── NoFitnessPlan.tsx │ ├── ProfileHeader.tsx │ ├── TerminalOverlay.tsx │ ├── UserPrograms.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ └── tabs.tsx ├── constants │ └── index.ts ├── lib │ ├── utils.ts │ └── vapi.ts ├── middleware.ts └── providers │ └── ConvexClerkProvider.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/components.json -------------------------------------------------------------------------------- /convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/README.md -------------------------------------------------------------------------------- /convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/_generated/api.js -------------------------------------------------------------------------------- /convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/_generated/server.js -------------------------------------------------------------------------------- /convex/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/auth.config.ts -------------------------------------------------------------------------------- /convex/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/http.ts -------------------------------------------------------------------------------- /convex/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/plans.ts -------------------------------------------------------------------------------- /convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/schema.ts -------------------------------------------------------------------------------- /convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/tsconfig.json -------------------------------------------------------------------------------- /convex/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/convex/users.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/ai-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/public/ai-avatar.png -------------------------------------------------------------------------------- /public/hero-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/public/hero-ai.png -------------------------------------------------------------------------------- /public/hero-ai2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/public/hero-ai2.png -------------------------------------------------------------------------------- /public/hero-ai3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/public/hero-ai3.png -------------------------------------------------------------------------------- /public/screenshot-for-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/public/screenshot-for-readme.png -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/(auth)/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/(auth)/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/generate-program/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/generate-program/page.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/app/profile/page.tsx -------------------------------------------------------------------------------- /src/components/CornerElements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/CornerElements.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/NoFitnessPlan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/NoFitnessPlan.tsx -------------------------------------------------------------------------------- /src/components/ProfileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/ProfileHeader.tsx -------------------------------------------------------------------------------- /src/components/TerminalOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/TerminalOverlay.tsx -------------------------------------------------------------------------------- /src/components/UserPrograms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/UserPrograms.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/vapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/lib/vapi.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/providers/ConvexClerkProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/src/providers/ConvexClerkProvider.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/codeflex-ai/HEAD/tsconfig.json --------------------------------------------------------------------------------