Task 1: Initialize React project with Vite, TypeScript, Tailwind
- Scaffolded project with React 18, Vite, TypeScript - Configured Tailwind CSS with custom design tokens (teal, coral, ecg colors) - Added Framer Motion and Lucide React dependencies - Set up Google Fonts (Fira Code, Plus Jakarta Sans, Inter Tight) - Created TypeScript interfaces for CV data types - Added utility function for skill gauge calculations - Quality checks passing: typecheck, build, lint all clean
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export function calculateSkillOffset(level: number, radius: number): number {
|
||||
const circumference = 2 * Math.PI * radius
|
||||
return circumference * (1 - level / 100)
|
||||
}
|
||||
|
||||
export function formatBootLine(text: string): string {
|
||||
return text
|
||||
}
|
||||
Reference in New Issue
Block a user