├── .eslintrc.json ├── .example.env ├── .gitignore ├── .npmrc ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── (main) │ ├── actions.ts │ ├── chats │ │ └── [id] │ │ │ ├── chat-box.tsx │ │ │ ├── chat-log.tsx │ │ │ ├── code-viewer-layout.tsx │ │ │ ├── code-viewer.tsx │ │ │ ├── error.tsx │ │ │ ├── page.client.tsx │ │ │ ├── page.tsx │ │ │ └── share.tsx │ ├── layout.tsx │ ├── page.tsx │ └── providers.tsx ├── api │ ├── create-chat │ │ └── route.ts │ ├── get-next-completion-stream-promise │ │ └── route.ts │ ├── og │ │ └── route.tsx │ └── s3-upload │ │ └── route.ts ├── favicon.ico ├── globals.css ├── icon.png ├── layout.tsx ├── not-found.tsx ├── robots.txt └── share │ ├── [id] │ └── page.tsx │ ├── layout.tsx │ └── v2 │ └── [messageId] │ ├── _opengraph-image.tsx │ ├── loading.tsx │ └── page.tsx ├── architecture.md ├── components.json ├── components ├── app-version-button.tsx ├── code-runner-react.tsx ├── code-runner-server-action.tsx ├── code-runner.tsx ├── fieldset.tsx ├── header.tsx ├── icons │ ├── arrow-left.tsx │ ├── arrow-right.tsx │ ├── chevron-left.tsx │ ├── chevron-right.tsx │ ├── close-icon.tsx │ ├── copy-icon.tsx │ ├── github-icon.tsx │ ├── lightbulb.tsx │ ├── lightning-bolt.tsx │ ├── logo-small.tsx │ ├── play-icon.tsx │ ├── refresh.tsx │ ├── share-icon.tsx │ ├── upload-icon.tsx │ └── x-icon.tsx ├── loading-button.tsx ├── new-link.tsx ├── spinner.tsx ├── syntax-highlighter.tsx └── ui │ ├── drawer.tsx │ ├── select.tsx │ ├── switch.tsx │ ├── toast.tsx │ └── toaster.tsx ├── hooks ├── use-media-query.ts ├── use-scroll-to.ts └── use-toast.ts ├── lib ├── constants.ts ├── domain.ts ├── examples │ ├── blog.json │ ├── calculator.json │ ├── landing.json │ ├── pomodoro.json │ └── quiz.json ├── prisma.ts ├── prompts.ts ├── sandpack-config.ts ├── shadcn-docs │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── index.ts │ ├── input.tsx │ ├── label.tsx │ ├── radio-group.tsx │ ├── select.tsx │ └── textarea.tsx ├── shadcn-examples.ts ├── shadcn.ts └── utils.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20240808195804_first │ │ └── migration.sql │ ├── 20241230203627_chat_and_message │ │ └── migration.sql │ ├── 20251112183053_add_files_and_screenshot │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── Aeonik │ ├── Aeonik-Bold.ttf │ ├── Aeonik-Medium.ttf │ ├── Aeonik-Regular.ttf │ ├── AeonikFono-Bold.otf │ ├── AeonikFono-Regular.otf │ └── AeonikMono-Regular.otf ├── cssIcon.png ├── dynamic-og.png ├── fullLogo.png ├── halo.png ├── logo.svg ├── og-image.png ├── together.png └── togethercomputer.png ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | force=true -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/README.md -------------------------------------------------------------------------------- /app/(main)/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/actions.ts -------------------------------------------------------------------------------- /app/(main)/chats/[id]/chat-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/chat-box.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/chat-log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/chat-log.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/code-viewer-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/code-viewer-layout.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/code-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/code-viewer.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/error.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/page.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/page.client.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/page.tsx -------------------------------------------------------------------------------- /app/(main)/chats/[id]/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/chats/[id]/share.tsx -------------------------------------------------------------------------------- /app/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/layout.tsx -------------------------------------------------------------------------------- /app/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/page.tsx -------------------------------------------------------------------------------- /app/(main)/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/(main)/providers.tsx -------------------------------------------------------------------------------- /app/api/create-chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/api/create-chat/route.ts -------------------------------------------------------------------------------- /app/api/get-next-completion-stream-promise/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/api/get-next-completion-stream-promise/route.ts -------------------------------------------------------------------------------- /app/api/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/api/og/route.tsx -------------------------------------------------------------------------------- /app/api/s3-upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/api/s3-upload/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/icon.png -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | Allow: /api/og/* 2 | -------------------------------------------------------------------------------- /app/share/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/share/[id]/page.tsx -------------------------------------------------------------------------------- /app/share/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/share/layout.tsx -------------------------------------------------------------------------------- /app/share/v2/[messageId]/_opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/share/v2/[messageId]/_opengraph-image.tsx -------------------------------------------------------------------------------- /app/share/v2/[messageId]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/share/v2/[messageId]/loading.tsx -------------------------------------------------------------------------------- /app/share/v2/[messageId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/app/share/v2/[messageId]/page.tsx -------------------------------------------------------------------------------- /architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/architecture.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components.json -------------------------------------------------------------------------------- /components/app-version-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/app-version-button.tsx -------------------------------------------------------------------------------- /components/code-runner-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/code-runner-react.tsx -------------------------------------------------------------------------------- /components/code-runner-server-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/code-runner-server-action.tsx -------------------------------------------------------------------------------- /components/code-runner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/code-runner.tsx -------------------------------------------------------------------------------- /components/fieldset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/fieldset.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/icons/arrow-left.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/arrow-left.tsx -------------------------------------------------------------------------------- /components/icons/arrow-right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/arrow-right.tsx -------------------------------------------------------------------------------- /components/icons/chevron-left.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/chevron-left.tsx -------------------------------------------------------------------------------- /components/icons/chevron-right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/chevron-right.tsx -------------------------------------------------------------------------------- /components/icons/close-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/close-icon.tsx -------------------------------------------------------------------------------- /components/icons/copy-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/copy-icon.tsx -------------------------------------------------------------------------------- /components/icons/github-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/github-icon.tsx -------------------------------------------------------------------------------- /components/icons/lightbulb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/lightbulb.tsx -------------------------------------------------------------------------------- /components/icons/lightning-bolt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/lightning-bolt.tsx -------------------------------------------------------------------------------- /components/icons/logo-small.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/logo-small.tsx -------------------------------------------------------------------------------- /components/icons/play-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/play-icon.tsx -------------------------------------------------------------------------------- /components/icons/refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/refresh.tsx -------------------------------------------------------------------------------- /components/icons/share-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/share-icon.tsx -------------------------------------------------------------------------------- /components/icons/upload-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/upload-icon.tsx -------------------------------------------------------------------------------- /components/icons/x-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/icons/x-icon.tsx -------------------------------------------------------------------------------- /components/loading-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/loading-button.tsx -------------------------------------------------------------------------------- /components/new-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/new-link.tsx -------------------------------------------------------------------------------- /components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/spinner.tsx -------------------------------------------------------------------------------- /components/syntax-highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/syntax-highlighter.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/hooks/use-media-query.ts -------------------------------------------------------------------------------- /hooks/use-scroll-to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/hooks/use-scroll-to.ts -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/domain.ts -------------------------------------------------------------------------------- /lib/examples/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/examples/blog.json -------------------------------------------------------------------------------- /lib/examples/calculator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/examples/calculator.json -------------------------------------------------------------------------------- /lib/examples/landing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/examples/landing.json -------------------------------------------------------------------------------- /lib/examples/pomodoro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/examples/pomodoro.json -------------------------------------------------------------------------------- /lib/examples/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/examples/quiz.json -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/prompts.ts -------------------------------------------------------------------------------- /lib/sandpack-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/sandpack-config.ts -------------------------------------------------------------------------------- /lib/shadcn-docs/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/avatar.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/button.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/card.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/checkbox.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/index.ts -------------------------------------------------------------------------------- /lib/shadcn-docs/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/input.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/label.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/radio-group.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/select.tsx -------------------------------------------------------------------------------- /lib/shadcn-docs/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-docs/textarea.tsx -------------------------------------------------------------------------------- /lib/shadcn-examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn-examples.ts -------------------------------------------------------------------------------- /lib/shadcn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/shadcn.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20240808195804_first/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/prisma/migrations/20240808195804_first/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241230203627_chat_and_message/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/prisma/migrations/20241230203627_chat_and_message/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20251112183053_add_files_and_screenshot/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/prisma/migrations/20251112183053_add_files_and_screenshot/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/Aeonik/Aeonik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/Aeonik/Aeonik-Bold.ttf -------------------------------------------------------------------------------- /public/Aeonik/Aeonik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/Aeonik/Aeonik-Medium.ttf -------------------------------------------------------------------------------- /public/Aeonik/Aeonik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/Aeonik/Aeonik-Regular.ttf -------------------------------------------------------------------------------- /public/Aeonik/AeonikFono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/Aeonik/AeonikFono-Bold.otf -------------------------------------------------------------------------------- /public/Aeonik/AeonikFono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/Aeonik/AeonikFono-Regular.otf -------------------------------------------------------------------------------- /public/Aeonik/AeonikMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/Aeonik/AeonikMono-Regular.otf -------------------------------------------------------------------------------- /public/cssIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/cssIcon.png -------------------------------------------------------------------------------- /public/dynamic-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/dynamic-og.png -------------------------------------------------------------------------------- /public/fullLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/fullLogo.png -------------------------------------------------------------------------------- /public/halo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/halo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/together.png -------------------------------------------------------------------------------- /public/togethercomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/public/togethercomputer.png -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/llamacoder/HEAD/tsconfig.json --------------------------------------------------------------------------------