├── .eslintrc.json ├── app ├── icon.png ├── favicon.ico ├── twitter-image.png ├── opengraph-image.png ├── layout.tsx ├── a │ └── [id] │ │ └── page.tsx ├── globals.css ├── actions.ts ├── api │ └── check-aura │ │ └── route.ts └── page.tsx ├── assets ├── Logo.png ├── CardSideHandles.tsx ├── CardSideCover.tsx └── CardTopCover.tsx ├── next.config.mjs ├── postcss.config.mjs ├── lib └── utils.ts ├── .env.example ├── components ├── ui │ ├── skeleton.tsx │ ├── textarea.tsx │ ├── label.tsx │ ├── input.tsx │ ├── separator.tsx │ ├── badge.tsx │ ├── radio-group.tsx │ ├── avatar.tsx │ ├── alert.tsx │ ├── scroll-area.tsx │ ├── button.tsx │ ├── card.tsx │ ├── accordion.tsx │ ├── select.tsx │ └── dropdown-menu.tsx ├── GradientBackground.tsx ├── ShareButton.tsx └── SVGLogo.tsx ├── public ├── groq.svg └── deepseek.svg ├── components.json ├── .gitignore ├── tsconfig.json ├── README.md ├── package.json └── tailwind.config.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "next/typescript"] 3 | } 4 | -------------------------------------------------------------------------------- /app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaidmukaddam/aura-checker/HEAD/app/icon.png -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaidmukaddam/aura-checker/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaidmukaddam/aura-checker/HEAD/assets/Logo.png -------------------------------------------------------------------------------- /app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaidmukaddam/aura-checker/HEAD/app/twitter-image.png -------------------------------------------------------------------------------- /app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaidmukaddam/aura-checker/HEAD/app/opengraph-image.png -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- 1 | import { clsx, type ClassValue } from "clsx" 2 | import { twMerge } from "tailwind-merge" 3 | 4 | export function cn(...inputs: ClassValue[]) { 5 | return twMerge(clsx(inputs)) 6 | } 7 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # Get the DEEPSEEK_API_KEY from https://platform.deepseek.com/api_keys 2 | # Get the EXA_API_KEY from https://dashboard.exa.ai/api-keys 3 | # Get the GROQ_API_KEY from https://console.groq.com/keys 4 | 5 | # API Keys 6 | DEEPSEEK_API_KEY=YOUR_DEEPSEEK_API_KEY 7 | EXA_API_KEY=YOUR_EXA_API_KEY 8 | GROQ_API_KEY=YOUR_GROQ_API_KEY -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- 1 | import { cn } from "@/lib/utils" 2 | 3 | function Skeleton({ 4 | className, 5 | ...props 6 | }: React.HTMLAttributes) { 7 | return ( 8 |
12 | ) 13 | } 14 | 15 | export { Skeleton } 16 | -------------------------------------------------------------------------------- /public/groq.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "new-york", 4 | "rsc": true, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.ts", 8 | "css": "app/globals.css", 9 | "baseColor": "neutral", 10 | "cssVariables": true, 11 | "prefix": "" 12 | }, 13 | "aliases": { 14 | "components": "@/components", 15 | "utils": "@/lib/utils", 16 | "ui": "@/components/ui", 17 | "lib": "@/lib", 18 | "hooks": "@/hooks" 19 | }, 20 | "iconLibrary": "lucide" 21 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | .env 31 | 32 | # vercel 33 | .vercel 34 | 35 | # typescript 36 | *.tsbuildinfo 37 | next-env.d.ts 38 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["dom", "dom.iterable", "esnext"], 4 | "allowJs": true, 5 | "skipLibCheck": true, 6 | "strict": true, 7 | "noEmit": true, 8 | "esModuleInterop": true, 9 | "module": "esnext", 10 | "moduleResolution": "bundler", 11 | "resolveJsonModule": true, 12 | "isolatedModules": true, 13 | "jsx": "preserve", 14 | "incremental": true, 15 | "plugins": [ 16 | { 17 | "name": "next" 18 | } 19 | ], 20 | "paths": { 21 | "@/*": ["./*"] 22 | } 23 | }, 24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 25 | "exclude": ["node_modules"] 26 | } 27 | -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | 3 | import { cn } from "@/lib/utils" 4 | 5 | const Textarea = React.forwardRef< 6 | HTMLTextAreaElement, 7 | React.ComponentProps<"textarea"> 8 | >(({ className, ...props }, ref) => { 9 | return ( 10 | 384 |
385 | 386 | 387 | 388 | 395 | 396 | )} 397 | 398 | {/* Show the Create Your Own button inside the card when in shared view and no result */} 399 | {isSharedView && !result && ( 400 |
401 | 406 | Generate Aura Report ++ 407 | 408 |
409 | )} 410 | 411 | 412 | {!isLoading && isSubmitted && ( 413 |
414 | 419 | 420 | 421 | 426 | 427 | 428 |
429 | )} 430 | 431 | 432 | {(isSubmitted && !result) && ( 433 | 438 |

{getLoadingMessage()}

439 |
440 | 447 |
448 |
449 | )} 450 | 451 | {result && ( 452 |
453 |
454 |

455 | Aura Compatibility Report 456 |

457 |
458 |
459 | @{auraUser} 460 |
461 | x 462 |
463 | @{auraSubject} 464 |
465 |
466 |
467 | 468 |
469 | {reasoning && ( 470 | 476 | 480 | 481 | AI Reasoning Process 482 | 483 | 484 |
485 | 486 |
487 |
488 |
489 |
490 | )} 491 | {result && ( 492 |
493 | 494 |
495 | )} 496 |
497 |
498 | )} 499 | 500 | 501 | ) 502 | } --------------------------------------------------------------------------------