mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-16 10:21:17 +00:00
- Bootstrap Next.js 15 project with TypeScript, Tailwind, and App Router - Build full quiz with 5 pop culture questions mapping to 3 personalities - Implement percentage-based results display with ranked breakdown - Apply warm/cozy earthy palette inspired by Claude homepage aesthetic - Components: QuizQuestion, QuizResults with hover states and progress bar
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|