Files
Snigdha-OS.github.io/src/data/navigation.ts
2024-12-25 03:38:05 +05:30

11 lines
485 B
TypeScript

import { Home, Info, Layout, Image, Download, Code, Heart } from 'lucide-react';
export const navigation = [
{ name: 'Home', href: '/', icon: Home },
{ name: 'About', href: '/about', icon: Info },
{ name: 'Features', href: '/features', icon: Layout },
{ name: 'Gallery', href: '/gallery', icon: Image },
{ name: 'Download', href: '/download', icon: Download },
{ name: 'Developers', href: '/developers', icon: Code },
{ name: 'Donate', href: '/donate', icon: Heart },
];