Files
neodlp/src/routes.ts

20 lines
417 B
TypeScript

import { Download, Settings, SquarePlay } from "lucide-react";
import { RoutesObj } from "@/types/route";
export const AllRoutes: Array<RoutesObj> = [
{
title: "Downloader",
url: "/",
icon: Download,
},
{
title: "Library",
url: "/library",
icon: SquarePlay,
},
{
title: "Settings",
url: "/settings",
icon: Settings,
}
];