(feat): added extension tab and minor tweaks

This commit is contained in:
2025-06-14 21:18:08 +05:30
parent 785bd7874d
commit 12886fe204
9 changed files with 146 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
import { Bell, Download, Settings, SquarePlay } from "lucide-react";
import { Download, Puzzle, Settings, SquarePlay } from "lucide-react";
import { RoutesObj } from "@/types/route";
export const AllRoutes: Array<RoutesObj> = [
@@ -12,14 +12,14 @@ export const AllRoutes: Array<RoutesObj> = [
url: "/library",
icon: SquarePlay,
},
{
title: "Extension",
url: "/extension",
icon: Puzzle,
},
{
title: "Settings",
url: "/settings",
icon: Settings,
},
{
title: "Notifications",
url: "/notifications",
icon: Bell,
}
];