Initial commit

This commit is contained in:
Joey Yakimowich-Payne 2026-01-13 07:23:30 -07:00
commit c87ebf0a74
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
22 changed files with 4973 additions and 0 deletions

25
constants.ts Normal file
View file

@ -0,0 +1,25 @@
import { Triangle, Diamond, Circle, Square } from 'lucide-react';
export const COLORS = {
red: 'bg-red-600',
blue: 'bg-blue-600',
yellow: 'bg-yellow-600',
green: 'bg-green-600',
purple: 'bg-[#46178f]',
purpleLight: 'bg-[#864cbf]',
};
export const SHAPES = {
triangle: Triangle,
diamond: Diamond,
circle: Circle,
square: Square,
};
export const BOT_NAMES = [
"QuizWiz", "FastFinger", "Brainiac", "KnowItAll", "Guesser",
"LuckyStrike", "OwlFan", "Kahootie", "ZigZag", "Pixel"
];
export const QUESTION_TIME = 20; // seconds
export const POINTS_PER_QUESTION = 1000;