forked from 77media/video-flow
23 lines
468 B
TypeScript
23 lines
468 B
TypeScript
import { BookHeart, Gift, Home } from "lucide-react";
|
|
|
|
interface NavigationItem {
|
|
name: string;
|
|
href: string;
|
|
icon: any;
|
|
}
|
|
|
|
interface Navigations {
|
|
title: string;
|
|
items: NavigationItem[];
|
|
}
|
|
|
|
export const navigationItems: Navigations[] = [
|
|
{
|
|
title: 'Main',
|
|
items: [
|
|
{ name: 'Home', href: '/home', icon: Home },
|
|
{ name: 'My Portfolio', href: '/movies', icon: BookHeart },
|
|
{ name: 'Share', href: '/share', icon: Gift },
|
|
],
|
|
}
|
|
]; |