├── README.md ├── assets ├── Logo Transparent.png ├── Logo.png └── arch.png ├── compiler-server ├── .dockerignore ├── .gitignore ├── Dockerfile ├── app.ts ├── entrypoint.sh ├── package-lock.json ├── package.json ├── src │ ├── controllers │ │ └── executionHandler.ts │ ├── types │ │ └── types.ts │ └── utils │ │ └── execCommand.ts └── tsconfig.json ├── custom-images ├── cpp │ └── Dockerfile ├── node │ └── Dockerfile ├── shell │ └── Dockerfile └── sqlite │ └── Dockerfile └── next-app ├── .gitignore ├── components.json ├── eslint.config.mjs ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── 0282f9e0be484543a67e6475cecac393.txt ├── BingSiteAuth.xml ├── ads.txt ├── codeframer-light.webp ├── codeframer.webp ├── logo.webp ├── robots.txt ├── sign-in.webp └── user.webp ├── src ├── app │ ├── actions.ts │ ├── admin │ │ ├── blog │ │ │ └── page.tsx │ │ ├── inquiries │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── stats │ │ │ └── page.tsx │ │ └── users │ │ │ └── page.tsx │ ├── api │ │ ├── admin │ │ │ ├── blog │ │ │ │ └── route.ts │ │ │ ├── inquiries │ │ │ │ └── route.ts │ │ │ ├── stats │ │ │ │ └── route.ts │ │ │ └── users │ │ │ │ └── route.ts │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── blogs │ │ │ ├── [slug] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── copilot │ │ │ └── route.ts │ │ ├── projects │ │ │ ├── [pid] │ │ │ │ └── route.ts │ │ │ ├── create │ │ │ │ └── route.ts │ │ │ ├── public │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ └── users │ │ │ └── [uid] │ │ │ └── route.ts │ ├── blogs │ │ ├── [slug] │ │ │ ├── edit │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ └── page.tsx │ ├── compiler │ │ └── [lang] │ │ │ └── page.tsx │ ├── contact │ │ ├── layout.tsx │ │ └── page.tsx │ ├── dashboard │ │ ├── layout.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── page.tsx │ ├── privacy-policy │ │ └── page.tsx │ ├── profile │ │ ├── layout.tsx │ │ └── page.tsx │ ├── sign-in │ │ └── page.tsx │ ├── terms │ │ └── page.tsx │ ├── unauthorized │ │ └── page.tsx │ ├── user │ │ └── [uid] │ │ │ └── [pid] │ │ │ └── page.tsx │ └── web-editor │ │ └── page.tsx ├── auth.config.ts ├── auth.ts ├── components │ ├── CodeSnippet │ │ └── CodeSnippet.tsx │ ├── Consent │ │ ├── CookieBanner.tsx │ │ └── GoogleAnalytics.tsx │ ├── Copilot │ │ └── Copilot.tsx │ ├── Editor │ │ ├── Compiler.tsx │ │ ├── RichTextEditor.tsx │ │ ├── WebEditor.tsx │ │ └── index.tsx │ ├── Footer │ │ └── Footer.tsx │ ├── Modals │ │ ├── CookieCustomizeModal.tsx │ │ └── CreateProject.tsx │ ├── Navbar │ │ ├── AdminNav.tsx │ │ └── Navbar.tsx │ ├── Search │ │ └── SearchBar.tsx │ └── ui │ │ ├── AlertWrapper.tsx │ │ ├── BlogCard.tsx │ │ ├── FeaturesSection.tsx │ │ ├── InquiryCard.tsx │ │ ├── ProjectCard.tsx │ │ ├── UserCard.tsx │ │ ├── alert-dialog.tsx │ │ ├── background-gradient-animation.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── dropdown-menu.tsx │ │ ├── hero-video-dialog.tsx │ │ ├── input.tsx │ │ ├── magic-card.tsx │ │ ├── orbiting-circles.tsx │ │ ├── select.tsx │ │ ├── skeleton.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle.tsx │ │ └── warning.tsx ├── config │ └── db.ts ├── context │ ├── ReactQueryProvider.tsx │ └── ThemeProvider.tsx ├── hooks │ ├── use-toast.ts │ ├── useDebounce.tsx │ ├── useFetch.ts │ └── useSend.ts ├── lib │ ├── helpers.ts │ ├── storageHelper.ts │ └── utils.ts ├── middleware.ts ├── shared │ ├── template-web.json │ ├── templates.json │ └── themes.json └── types │ ├── tailwindcss-util.d.ts │ └── types.d.ts └── tsconfig.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/README.md -------------------------------------------------------------------------------- /assets/Logo Transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/assets/Logo Transparent.png -------------------------------------------------------------------------------- /assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/assets/Logo.png -------------------------------------------------------------------------------- /assets/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/assets/arch.png -------------------------------------------------------------------------------- /compiler-server/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | dist/ -------------------------------------------------------------------------------- /compiler-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .env -------------------------------------------------------------------------------- /compiler-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/Dockerfile -------------------------------------------------------------------------------- /compiler-server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/app.ts -------------------------------------------------------------------------------- /compiler-server/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/entrypoint.sh -------------------------------------------------------------------------------- /compiler-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/package-lock.json -------------------------------------------------------------------------------- /compiler-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/package.json -------------------------------------------------------------------------------- /compiler-server/src/controllers/executionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/src/controllers/executionHandler.ts -------------------------------------------------------------------------------- /compiler-server/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/src/types/types.ts -------------------------------------------------------------------------------- /compiler-server/src/utils/execCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/src/utils/execCommand.ts -------------------------------------------------------------------------------- /compiler-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/compiler-server/tsconfig.json -------------------------------------------------------------------------------- /custom-images/cpp/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | 3 | WORKDIR /app 4 | 5 | RUN apk add --no-cache g++ gcc libc-dev 6 | 7 | CMD ["sh"] 8 | -------------------------------------------------------------------------------- /custom-images/node/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18-alpine 2 | 3 | WORKDIR /app 4 | 5 | RUN npm install -g esbuild 6 | 7 | CMD ["node"] 8 | -------------------------------------------------------------------------------- /custom-images/shell/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | 3 | WORKDIR /app 4 | 5 | RUN apk add --no-cache bash coreutils 6 | 7 | CMD ["sh"] 8 | -------------------------------------------------------------------------------- /custom-images/sqlite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/custom-images/sqlite/Dockerfile -------------------------------------------------------------------------------- /next-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/.gitignore -------------------------------------------------------------------------------- /next-app/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/components.json -------------------------------------------------------------------------------- /next-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/eslint.config.mjs -------------------------------------------------------------------------------- /next-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/next.config.mjs -------------------------------------------------------------------------------- /next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/package.json -------------------------------------------------------------------------------- /next-app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/pnpm-lock.yaml -------------------------------------------------------------------------------- /next-app/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/pnpm-workspace.yaml -------------------------------------------------------------------------------- /next-app/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/postcss.config.mjs -------------------------------------------------------------------------------- /next-app/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/prisma/schema.prisma -------------------------------------------------------------------------------- /next-app/public/0282f9e0be484543a67e6475cecac393.txt: -------------------------------------------------------------------------------- 1 | 0282f9e0be484543a67e6475cecac393 -------------------------------------------------------------------------------- /next-app/public/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/BingSiteAuth.xml -------------------------------------------------------------------------------- /next-app/public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-7436170435436020, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /next-app/public/codeframer-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/codeframer-light.webp -------------------------------------------------------------------------------- /next-app/public/codeframer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/codeframer.webp -------------------------------------------------------------------------------- /next-app/public/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/logo.webp -------------------------------------------------------------------------------- /next-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/robots.txt -------------------------------------------------------------------------------- /next-app/public/sign-in.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/sign-in.webp -------------------------------------------------------------------------------- /next-app/public/user.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/public/user.webp -------------------------------------------------------------------------------- /next-app/src/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/actions.ts -------------------------------------------------------------------------------- /next-app/src/app/admin/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/admin/blog/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/admin/inquiries/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/admin/inquiries/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/admin/layout.tsx -------------------------------------------------------------------------------- /next-app/src/app/admin/stats/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/admin/stats/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/admin/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/admin/users/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/api/admin/blog/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/admin/blog/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/admin/inquiries/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/admin/inquiries/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/admin/stats/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/admin/stats/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/admin/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/admin/users/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/blogs/[slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/blogs/[slug]/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/blogs/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/blogs/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/copilot/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/copilot/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/projects/[pid]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/projects/[pid]/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/projects/create/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/projects/create/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/projects/public/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/projects/public/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/projects/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/projects/route.ts -------------------------------------------------------------------------------- /next-app/src/app/api/users/[uid]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/api/users/[uid]/route.ts -------------------------------------------------------------------------------- /next-app/src/app/blogs/[slug]/edit/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/blogs/[slug]/edit/layout.tsx -------------------------------------------------------------------------------- /next-app/src/app/blogs/[slug]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/blogs/[slug]/edit/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/blogs/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/blogs/[slug]/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/blogs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/blogs/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/compiler/[lang]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/compiler/[lang]/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/contact/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/contact/layout.tsx -------------------------------------------------------------------------------- /next-app/src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/contact/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /next-app/src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/favicon.ico -------------------------------------------------------------------------------- /next-app/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/globals.css -------------------------------------------------------------------------------- /next-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/layout.tsx -------------------------------------------------------------------------------- /next-app/src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/loading.tsx -------------------------------------------------------------------------------- /next-app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/privacy-policy/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/profile/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/profile/layout.tsx -------------------------------------------------------------------------------- /next-app/src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/profile/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/sign-in/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/terms/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/unauthorized/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/unauthorized/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/user/[uid]/[pid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/user/[uid]/[pid]/page.tsx -------------------------------------------------------------------------------- /next-app/src/app/web-editor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/app/web-editor/page.tsx -------------------------------------------------------------------------------- /next-app/src/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/auth.config.ts -------------------------------------------------------------------------------- /next-app/src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/auth.ts -------------------------------------------------------------------------------- /next-app/src/components/CodeSnippet/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/CodeSnippet/CodeSnippet.tsx -------------------------------------------------------------------------------- /next-app/src/components/Consent/CookieBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Consent/CookieBanner.tsx -------------------------------------------------------------------------------- /next-app/src/components/Consent/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Consent/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /next-app/src/components/Copilot/Copilot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Copilot/Copilot.tsx -------------------------------------------------------------------------------- /next-app/src/components/Editor/Compiler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Editor/Compiler.tsx -------------------------------------------------------------------------------- /next-app/src/components/Editor/RichTextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Editor/RichTextEditor.tsx -------------------------------------------------------------------------------- /next-app/src/components/Editor/WebEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Editor/WebEditor.tsx -------------------------------------------------------------------------------- /next-app/src/components/Editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Editor/index.tsx -------------------------------------------------------------------------------- /next-app/src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /next-app/src/components/Modals/CookieCustomizeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Modals/CookieCustomizeModal.tsx -------------------------------------------------------------------------------- /next-app/src/components/Modals/CreateProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Modals/CreateProject.tsx -------------------------------------------------------------------------------- /next-app/src/components/Navbar/AdminNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Navbar/AdminNav.tsx -------------------------------------------------------------------------------- /next-app/src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /next-app/src/components/Search/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/Search/SearchBar.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/AlertWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/AlertWrapper.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/BlogCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/BlogCard.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/FeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/FeaturesSection.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/InquiryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/InquiryCard.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/ProjectCard.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/UserCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/UserCard.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/background-gradient-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/background-gradient-animation.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/button.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/card.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/hero-video-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/hero-video-dialog.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/input.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/magic-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/magic-card.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/orbiting-circles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/orbiting-circles.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/select.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /next-app/src/components/ui/warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/components/ui/warning.tsx -------------------------------------------------------------------------------- /next-app/src/config/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/config/db.ts -------------------------------------------------------------------------------- /next-app/src/context/ReactQueryProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/context/ReactQueryProvider.tsx -------------------------------------------------------------------------------- /next-app/src/context/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/context/ThemeProvider.tsx -------------------------------------------------------------------------------- /next-app/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /next-app/src/hooks/useDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/hooks/useDebounce.tsx -------------------------------------------------------------------------------- /next-app/src/hooks/useFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/hooks/useFetch.ts -------------------------------------------------------------------------------- /next-app/src/hooks/useSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/hooks/useSend.ts -------------------------------------------------------------------------------- /next-app/src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/lib/helpers.ts -------------------------------------------------------------------------------- /next-app/src/lib/storageHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/lib/storageHelper.ts -------------------------------------------------------------------------------- /next-app/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/lib/utils.ts -------------------------------------------------------------------------------- /next-app/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/middleware.ts -------------------------------------------------------------------------------- /next-app/src/shared/template-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/shared/template-web.json -------------------------------------------------------------------------------- /next-app/src/shared/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/shared/templates.json -------------------------------------------------------------------------------- /next-app/src/shared/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/shared/themes.json -------------------------------------------------------------------------------- /next-app/src/types/tailwindcss-util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/types/tailwindcss-util.d.ts -------------------------------------------------------------------------------- /next-app/src/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/src/types/types.d.ts -------------------------------------------------------------------------------- /next-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LakshayBabbar/CodeFramer/HEAD/next-app/tsconfig.json --------------------------------------------------------------------------------