website/app/types.tsx

13 lines
226 B
TypeScript
Raw Normal View History

2023-12-23 11:21:03 +07:00
export type ImageItem = {
src: string;
href: string;
alt: string;
};
export type ContactButtonsItem = {
platform: string;
title: string;
description: string;
href: string;
username: string;
}