mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-05 20:26:43 +02:00
11 lines
485 B
TypeScript
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 },
|
|
]; |