20 lines
303 B
TypeScript
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;
|
|
}
|