├── .dockerignore ├── .env.sample ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── bun.lockb ├── components.json ├── docker-compose.yml ├── entrypoint.sh ├── next-sitemap.config.js ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma ├── schema.prisma ├── seed.js └── seed.ts ├── public ├── next.svg ├── robots.txt ├── sitemap.xml ├── sounds │ ├── lose.mp3 │ └── success.wav └── vercel.svg ├── src ├── actions │ ├── auth-actions.ts │ ├── discord.ts │ ├── email.ts │ ├── exams.ts │ ├── github.ts │ ├── google.ts │ ├── new-password.ts │ ├── reset-forget.ts │ └── reset-password.ts ├── app │ ├── (auth) │ │ ├── auth-reset-password │ │ │ └── page.tsx │ │ ├── forget-password │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── login │ │ │ └── page.tsx │ │ └── signup │ │ │ └── page.tsx │ ├── (main) │ │ ├── (exam-section) │ │ │ ├── layout.tsx │ │ │ └── take │ │ │ │ └── [examId] │ │ │ │ └── page.tsx │ │ ├── (non-exam-section) │ │ │ ├── available-exams │ │ │ │ └── page.tsx │ │ │ ├── exam-results │ │ │ │ └── [examId] │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── reset-password │ │ │ │ └── page.tsx │ │ │ ├── update-details │ │ │ │ └── page.tsx │ │ │ └── user-results │ │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── api │ │ ├── login │ │ │ ├── discord │ │ │ │ └── route.ts │ │ │ ├── github │ │ │ │ └── route.ts │ │ │ └── google │ │ │ │ └── route.ts │ │ ├── order │ │ │ ├── create │ │ │ │ └── route.ts │ │ │ └── verify │ │ │ │ └── route.ts │ │ └── verify-email │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── auth.ts ├── components │ ├── auth │ │ ├── forget-password-form.tsx │ │ ├── login-form.tsx │ │ ├── reset-forget-password.tsx │ │ ├── reset-password-form.tsx │ │ ├── signup-form.tsx │ │ └── update-user-details.tsx │ ├── exams │ │ ├── avaiable.tsx │ │ ├── exam-component.tsx │ │ ├── exam-results.tsx │ │ ├── instructions.tsx │ │ ├── mutipage-form.tsx │ │ ├── user-results-chart.tsx │ │ └── user-results.tsx │ ├── global │ │ ├── info-bar.tsx │ │ ├── loading-button.tsx │ │ ├── login-button.tsx │ │ ├── logout-button.tsx │ │ ├── mode-toggle.tsx │ │ ├── navbar │ │ │ ├── navbar-center.tsx │ │ │ ├── navbar-end.tsx │ │ │ ├── navbar-start.tsx │ │ │ ├── navbar-wrapper.tsx │ │ │ └── navbar.tsx │ │ ├── password-input.tsx │ │ ├── polygon-texture.tsx │ │ ├── scroll-to-top-button.tsx │ │ ├── sidebar │ │ │ ├── collapse-menu-button.tsx │ │ │ ├── menu-options.tsx │ │ │ ├── mobile-dropdown.tsx │ │ │ ├── sidebar-layout.tsx │ │ │ ├── sidebar-toggle.tsx │ │ │ └── sidebar.tsx │ │ └── user-button.tsx │ ├── home │ │ └── home-component.tsx │ ├── icons │ │ ├── discord.tsx │ │ ├── github.tsx │ │ └── google.tsx │ ├── providers │ │ ├── session-provider.tsx │ │ └── theme-provider.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── sheet.tsx │ │ ├── shimmer-button.tsx │ │ ├── sonner.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ └── tooltip.tsx ├── config │ └── index.ts ├── env.mjs ├── hooks │ ├── use-razorpay.ts │ ├── use-sidebar-toggle.ts │ └── use-store.ts ├── lib │ ├── db.ts │ ├── email.ts │ └── utils.ts ├── queries │ └── index.ts └── schemas │ └── index.ts ├── tailwind.config.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/components.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/prisma/seed.js -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/sounds/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/public/sounds/lose.mp3 -------------------------------------------------------------------------------- /public/sounds/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/public/sounds/success.wav -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/actions/auth-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/auth-actions.ts -------------------------------------------------------------------------------- /src/actions/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/discord.ts -------------------------------------------------------------------------------- /src/actions/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/email.ts -------------------------------------------------------------------------------- /src/actions/exams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/exams.ts -------------------------------------------------------------------------------- /src/actions/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/github.ts -------------------------------------------------------------------------------- /src/actions/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/google.ts -------------------------------------------------------------------------------- /src/actions/new-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/new-password.ts -------------------------------------------------------------------------------- /src/actions/reset-forget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/reset-forget.ts -------------------------------------------------------------------------------- /src/actions/reset-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/actions/reset-password.ts -------------------------------------------------------------------------------- /src/app/(auth)/auth-reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(auth)/auth-reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/forget-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(auth)/forget-password/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(auth)/signup/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/(exam-section)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(exam-section)/layout.tsx -------------------------------------------------------------------------------- /src/app/(main)/(exam-section)/take/[examId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(exam-section)/take/[examId]/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/(non-exam-section)/available-exams/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(non-exam-section)/available-exams/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/(non-exam-section)/exam-results/[examId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(non-exam-section)/exam-results/[examId]/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/(non-exam-section)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(non-exam-section)/layout.tsx -------------------------------------------------------------------------------- /src/app/(main)/(non-exam-section)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(non-exam-section)/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/(non-exam-section)/update-details/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(non-exam-section)/update-details/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/(non-exam-section)/user-results/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/(non-exam-section)/user-results/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/(main)/layout.tsx -------------------------------------------------------------------------------- /src/app/api/login/discord/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/api/login/discord/route.ts -------------------------------------------------------------------------------- /src/app/api/login/github/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/api/login/github/route.ts -------------------------------------------------------------------------------- /src/app/api/login/google/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/api/login/google/route.ts -------------------------------------------------------------------------------- /src/app/api/order/create/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/api/order/create/route.ts -------------------------------------------------------------------------------- /src/app/api/order/verify/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/api/order/verify/route.ts -------------------------------------------------------------------------------- /src/app/api/verify-email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/api/verify-email/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/auth.ts -------------------------------------------------------------------------------- /src/components/auth/forget-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/auth/forget-password-form.tsx -------------------------------------------------------------------------------- /src/components/auth/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/auth/login-form.tsx -------------------------------------------------------------------------------- /src/components/auth/reset-forget-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/auth/reset-forget-password.tsx -------------------------------------------------------------------------------- /src/components/auth/reset-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/auth/reset-password-form.tsx -------------------------------------------------------------------------------- /src/components/auth/signup-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/auth/signup-form.tsx -------------------------------------------------------------------------------- /src/components/auth/update-user-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/auth/update-user-details.tsx -------------------------------------------------------------------------------- /src/components/exams/avaiable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/avaiable.tsx -------------------------------------------------------------------------------- /src/components/exams/exam-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/exam-component.tsx -------------------------------------------------------------------------------- /src/components/exams/exam-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/exam-results.tsx -------------------------------------------------------------------------------- /src/components/exams/instructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/instructions.tsx -------------------------------------------------------------------------------- /src/components/exams/mutipage-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/mutipage-form.tsx -------------------------------------------------------------------------------- /src/components/exams/user-results-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/user-results-chart.tsx -------------------------------------------------------------------------------- /src/components/exams/user-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/exams/user-results.tsx -------------------------------------------------------------------------------- /src/components/global/info-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/info-bar.tsx -------------------------------------------------------------------------------- /src/components/global/loading-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/loading-button.tsx -------------------------------------------------------------------------------- /src/components/global/login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/login-button.tsx -------------------------------------------------------------------------------- /src/components/global/logout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/logout-button.tsx -------------------------------------------------------------------------------- /src/components/global/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/mode-toggle.tsx -------------------------------------------------------------------------------- /src/components/global/navbar/navbar-center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/navbar/navbar-center.tsx -------------------------------------------------------------------------------- /src/components/global/navbar/navbar-end.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/navbar/navbar-end.tsx -------------------------------------------------------------------------------- /src/components/global/navbar/navbar-start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/navbar/navbar-start.tsx -------------------------------------------------------------------------------- /src/components/global/navbar/navbar-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/navbar/navbar-wrapper.tsx -------------------------------------------------------------------------------- /src/components/global/navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/navbar/navbar.tsx -------------------------------------------------------------------------------- /src/components/global/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/password-input.tsx -------------------------------------------------------------------------------- /src/components/global/polygon-texture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/polygon-texture.tsx -------------------------------------------------------------------------------- /src/components/global/scroll-to-top-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/scroll-to-top-button.tsx -------------------------------------------------------------------------------- /src/components/global/sidebar/collapse-menu-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/sidebar/collapse-menu-button.tsx -------------------------------------------------------------------------------- /src/components/global/sidebar/menu-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/sidebar/menu-options.tsx -------------------------------------------------------------------------------- /src/components/global/sidebar/mobile-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/sidebar/mobile-dropdown.tsx -------------------------------------------------------------------------------- /src/components/global/sidebar/sidebar-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/sidebar/sidebar-layout.tsx -------------------------------------------------------------------------------- /src/components/global/sidebar/sidebar-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/sidebar/sidebar-toggle.tsx -------------------------------------------------------------------------------- /src/components/global/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/components/global/user-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/global/user-button.tsx -------------------------------------------------------------------------------- /src/components/home/home-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/home/home-component.tsx -------------------------------------------------------------------------------- /src/components/icons/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/icons/discord.tsx -------------------------------------------------------------------------------- /src/components/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/icons/github.tsx -------------------------------------------------------------------------------- /src/components/icons/google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/icons/google.tsx -------------------------------------------------------------------------------- /src/components/providers/session-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/providers/session-provider.tsx -------------------------------------------------------------------------------- /src/components/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/providers/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/shimmer-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/shimmer-button.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/env.mjs -------------------------------------------------------------------------------- /src/hooks/use-razorpay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/hooks/use-razorpay.ts -------------------------------------------------------------------------------- /src/hooks/use-sidebar-toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/hooks/use-sidebar-toggle.ts -------------------------------------------------------------------------------- /src/hooks/use-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/hooks/use-store.ts -------------------------------------------------------------------------------- /src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/lib/db.ts -------------------------------------------------------------------------------- /src/lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/lib/email.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/queries/index.ts -------------------------------------------------------------------------------- /src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/src/schemas/index.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/aptitude-test/HEAD/tsconfig.json --------------------------------------------------------------------------------