21 lines
302 B
TypeScript
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;
|
|
}
|