Files
caperren-com/src/interfaces/skill-matrix.ts
Corwin Perren 87224a6dbb
Some checks failed
Build and Test - Staging / build_and_push (pull_request) Has been cancelled
Build and Test - Staging / deploy_staging (pull_request) Has been cancelled
Build and Test - Staging / test (pull_request) Has been cancelled
Finished ross content, added skill matrix, li, and ul, and improved many existing components, created and refactored to unified layouts and grid, visual improvements with proper column to row collapsing
2025-12-06 00:08:52 -08:00

7 lines
133 B
TypeScript

import type { lineItem } from "@interfaces/ul-li.ts";
export interface categorySkills {
category: string;
skills: lineItem[];
}