From 12e805b44993e332570f95a2e8636f67f992d447 Mon Sep 17 00:00:00 2001 From: dbahiense Date: Sat, 20 Jul 2024 14:30:28 -0300 Subject: [PATCH] small tweaks on sidebar links array --- constants/index.ts | 103 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 98 insertions(+), 5 deletions(-) diff --git a/constants/index.ts b/constants/index.ts index 73f177d..3a330e5 100644 --- a/constants/index.ts +++ b/constants/index.ts @@ -1,12 +1,105 @@ export const LeftSideBarLinks = [ { - route: '/home', - label: 'Home', imgURL: '/icons/home.svg', + route: '/', + label: 'Home', + }, + { + imgURL: '/icons/discover.svg', + route: '/discover', + label: 'Discover', }, { - route: '/profile', - label: 'Profile', imgURL: '/icons/microphone.svg', + route: '/create-podcast', + label: 'Create Podcast', + }, +]; + + +export const VoiceDetails = [ + { + id: 1, + name: "alloy", + }, + { + id: 2, + name: "echo", + }, + { + id: 3, + name: "fable", + }, + { + id: 4, + name: "onyx", + }, + { + id: 5, + name: "nova", + }, + { + id: 6, + name: "shimmer", + }, +]; + + +export const PodcastData = [ + { + id: 1, + title: "The Joe Rogan Experience", + description: "A long form, in-depth conversation", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/3106b884-548d-4ba0-a179-785901f69806", + }, + { + id: 2, + title: "The Futur", + description: "This is how the news should sound", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/16fbf9bd-d800-42bc-ac95-d5a586447bf6", + }, + { + id: 3, + title: "Waveform", + description: "Join Michelle Obama in conversation", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/60f0c1d9-f2ac-4a96-9178-f01d78fa3733", + }, + { + id: 4, + title: "The Tech Talks Daily Podcast", + description: "This is how the news should sound", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/5ba7ed1b-88b4-4c32-8d71-270f1c502445", + }, + { + id: 5, + title: "GaryVee Audio Experience", + description: "A long form, in-depth conversation", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/ca7cb1a6-4919-4b2c-a73e-279a79ac6d23", + }, + { + id: 6, + title: "Syntax ", + description: "Join Michelle Obama in conversation", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/b8ea40c7-aafb-401a-9129-73c515a73ab5", + }, + { + id: 7, + title: "IMPAULSIVE", + description: "A long form, in-depth conversation", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/8a55d662-fe3f-4bcf-b78b-3b2f3d3def5c", + }, + { + id: 8, + title: "Ted Tech", + description: "This is how the news should sound", + imgURL: + "https://lovely-flamingo-139.convex.cloud/api/storage/221ee4bd-435f-42c3-8e98-4a001e0d806e", }, -] \ No newline at end of file +]; \ No newline at end of file