2025-12-11 11:30:18 +08:00

20 lines
303 B
TypeScript

import { LucideIcon } from 'lucide-react';
export interface NavItem {
label: string;
href: string;
}
export interface ServiceItem {
title: string;
description: string;
icon: LucideIcon;
}
export interface CompanyInfo {
name: string;
address: string;
phone: string;
email: string;
}