diff --git a/src/components/nav/NavBar.vue b/src/components/nav/NavBar.vue
index 38417f8f..d4ec2ef8 100644
--- a/src/components/nav/NavBar.vue
+++ b/src/components/nav/NavBar.vue
@@ -18,6 +18,7 @@
Favorite Tracks ❤️
+
diff --git a/src/router/routes.ts b/src/router/routes.ts
index 1bdf9c6d..63c28693 100644
--- a/src/router/routes.ts
+++ b/src/router/routes.ts
@@ -136,6 +136,12 @@ const favoriteAlbums = {
component: () => import("@/views/FavoriteAlbums.vue"),
};
+const favoriteTracks = {
+ path: "/favorites/tracks",
+ name: "FavoriteTracks",
+ component: () => import("@/views/FavoriteTracks.vue"),
+};
+
const notFound = {
name: "NotFound",
path: "/:pathMatch(.*)",
@@ -159,6 +165,7 @@ const routes = [
ArtistTracks,
favorites,
favoriteAlbums,
+ favoriteTracks,
];
const Routes = {
@@ -178,6 +185,7 @@ const Routes = {
artistTracks: ArtistTracks.name,
favorites: favorites.name,
favoriteAlbums: favoriteAlbums.name,
+ favoriteTracks: favoriteTracks.name,
};
export { routes, Routes };
diff --git a/src/views/FavoriteTracks.vue b/src/views/FavoriteTracks.vue
new file mode 100644
index 00000000..a5ee61dd
--- /dev/null
+++ b/src/views/FavoriteTracks.vue
@@ -0,0 +1,23 @@
+
+