mirror of
https://github.com/neosubhamoy/neodlp.git
synced 2025-12-20 00:49:33 +05:30
20 lines
417 B
TypeScript
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,
|
|
}
|
|
]; |