diff --git a/components/ui/ThirdBanners.tsx b/components/ui/ThirdBanners.tsx index c30a1b9..05be7c1 100644 --- a/components/ui/ThirdBanners.tsx +++ b/components/ui/ThirdBanners.tsx @@ -14,6 +14,8 @@ export interface Banner { */ link: string; target?: "_blank" | "_self"; + width?: number; + height?: number; } export interface Props { @@ -26,7 +28,16 @@ export interface Props { } function BannerCard( - { image, alt, title, description, link = "#", target = "_blank" }: Banner, + { + image, + alt, + title, + description, + link = "#", + target = "_blank", + width, + height, + }: Banner, ) { return (