13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
|
export type ImageItem = {
|
||
|
src: string;
|
||
|
href: string;
|
||
|
alt: string;
|
||
|
};
|
||
|
|
||
|
export type ContactButtonsItem = {
|
||
|
platform: string;
|
||
|
title: string;
|
||
|
description: string;
|
||
|
href: string;
|
||
|
username: string;
|
||
|
}
|