CoolFace
Apppublic

KOOHAWN/AI_PDF_TOOLKIt

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes
navigation.ts40 linesDownload Raw Back to app
1import {2  FileImage,3  FileOutput,4  Files,5  Film,6  Home,7  Images,8  Printer,9  Search,10  type LucideIcon,11} from 'lucide-react';12 13export type AppTab =14  | 'home'15  | 'merge'16  | 'split'17  | 'outline'18  | 'compare'19  | 'illustrator'20  | 'images'21  | 'gif';22 23export type AppNavigationItem = {24  tab: AppTab;25  label: string;26  icon: LucideIcon;27  beta?: boolean;28};29 30export const APP_NAVIGATION_ITEMS: readonly AppNavigationItem[] = [31  { tab: 'home', label: '홈', icon: Home },32  { tab: 'merge', label: '병합', icon: Files },33  { tab: 'split', label: '분리', icon: FileOutput },34  { tab: 'outline', label: '출력', icon: Printer },35  { tab: 'compare', label: '비교', icon: Search },36  { tab: 'illustrator', label: '뷰어', icon: FileImage },37  { tab: 'images', label: '이미지', icon: Images },38  { tab: 'gif', label: 'GIF 생성', icon: Film, beta: true },39] as const;40