first commit

This commit is contained in:
Wind
2026-02-14 23:00:55 +09:00
commit ebd2be03a2
59 changed files with 2532 additions and 0 deletions

20
html/types.ts Normal file
View File

@@ -0,0 +1,20 @@
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;
}