-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
98 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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", | ||
}, | ||
] | ||
]; |