- Add Tool interface with name and optional link properties - Update BadgeList and BadgeListCard components to render links - Extract VocalSynthPage types to dedicated module - Migrate resume.json and vocal-synthesis.json data to use Tool format - Add links to all tools, frameworks, and technologies in resume
5 lines
59 B
TypeScript
5 lines
59 B
TypeScript
export interface Tool {
|
|
name: string;
|
|
link?: string;
|
|
}
|