🚀 feat(_new): new website ui and function

This commit is contained in:
eshanized
2024-12-25 03:38:05 +05:30
parent 3196782ce5
commit 3e920da9fc
89 changed files with 10212 additions and 0 deletions

11
src/data/navigation.ts Normal file
View File

@@ -0,0 +1,11 @@
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 },
];