fitmate-landing/types.ts
2025-11-20 22:22:22 +07:00

20 lines
329 B
TypeScript

import { LucideIcon } from 'lucide-react';
export interface FeatureItem {
title: string;
description: string;
icon: LucideIcon;
className?: string;
}
export interface NavItem {
label: string;
href: string;
}
export interface ChatMessage {
id: string;
role: 'user' | 'ai';
text: string;
timestamp: string;
}