Files
homepage/.Backup/html/types.ts
2026-02-14 23:00:55 +09:00

21 lines
302 B
TypeScript

export interface Message {
role: 'user' | 'model';
text: string;
}
export interface ServiceItem {
id: string;
title: string;
description: string;
icon: string;
image: string;
}
export interface ContactFormData {
name: string;
email: string;
subject: string;
message: string;
}