Optimized images and fixed tooltips
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m43s

This commit is contained in:
2025-06-12 23:33:23 -06:00
parent 9577cd8bc6
commit 28f41ac94d
6 changed files with 89 additions and 78 deletions

View File

@@ -1,3 +1,4 @@
import type { ImageMetadata } from "astro";
import type { ComponentType } from "preact";
// Icon Types
@@ -88,7 +89,7 @@ export interface ResumeConfig {
export interface PersonalInfo {
name: string;
profileImage: {
src: string;
src: ImageMetadata;
alt: string;
width: number;
height: number;
@@ -118,4 +119,4 @@ export interface SiteConfig {
url: string;
author: string;
};
}
}