Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
guicurcio committed Sep 4, 2023
1 parent 2bb8803 commit 8bc4d1e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 33 deletions.
29 changes: 28 additions & 1 deletion public/podcastsJSON/the-joe-rogan-experience.json
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
{"id":5,"title":"The Joe Rogan Experience","createdAt":1675270988467,"updated_at":"2023-02-01 21:06:28","description":"The Joe Rogan Experience is a long-form conversation podcast hosted by comedian and UFC commentator Joe Rogan. The podcast features in-depth discussions with a wide range of guests, including comedians, actors, musicians, scientists, and political figures.\\n\\nThrough these conversations, Rogan explores a variety of topics, from science and technology to culture and current events. Known for his conversational style and willingness to engage in controversial topics, Rogan often tackles challenging subjects and encourages guests to explore their opinions and ideas in depth. With a loyal following and a reputation for lively and engaging discussions, The Joe Rogan Experience has become one of the most popular and influential podcasts in the world, providing listeners with a unique and thought-provoking window into contemporary culture and society.","url":"","slug":"the-joe-rogan-experience","cover":"joe-rogan-experience.jpeg","host":"","podcastHostId":"cldnv7ioa0000copozcxvwa9y","backgroundCoverImage":null,"tags":"health,fitness,nutrition","genre":"conversation, interviews","rating":9,"amountOfEpisodes":null,"frequencyOfUpdates":null,"hasNotBeenUpdating":null,"isItBlocked":null,"isItExplicit":null,"language":null,"lastUpdate":null,"outsideImageUrl":null,"podcastCreatedOn":null,"popularity":null,"priority":null,"uid":null}
{
"id": 5,
"title": "The Joe Rogan Experience",
"createdAt": 1675270988467,
"updated_at": "2023-02-01 21:06:28",
"description": "The Joe Rogan Experience is a long-form conversation podcast hosted by comedian and UFC commentator Joe Rogan. The podcast features in-depth discussions with a wide range of guests, including comedians, actors, musicians, scientists, and political figures.\\n\\nThrough these conversations, Rogan explores a variety of topics, from science and technology to culture and current events. Known for his conversational style and willingness to engage in controversial topics, Rogan often tackles challenging subjects and encourages guests to explore their opinions and ideas in depth. With a loyal following and a reputation for lively and engaging discussions, The Joe Rogan Experience has become one of the most popular and influential podcasts in the world, providing listeners with a unique and thought-provoking window into contemporary culture and society.",
"url": "",
"slug": "the-joe-rogan-experience",
"cover": "joe-rogan-experience.jpeg",
"host": "",
"podcastHostId": "cldnv7ioa0000copozcxvwa9y",
"backgroundCoverImage": null,
"tags": "health,fitness,nutrition",
"genre": "conversation, interviews",
"rating": 9,
"amountOfEpisodes": null,
"frequencyOfUpdates": null,
"hasNotBeenUpdating": null,
"isItBlocked": null,
"isItExplicit": null,
"language": null,
"lastUpdate": null,
"outsideImageUrl": null,
"podcastCreatedOn": null,
"popularity": null,
"priority": null,
"uid": null
}
23 changes: 1 addition & 22 deletions src/app/(podcast)/podcast/[podcast]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,28 +99,7 @@ export default async function HomePodcastPage({ params }) {
</div>
<div className="grid w-full min-w-full grid-flow-row gap-[60px]">
<PodEpisodes
episodes={[
{
title: "asd",
description: "asdsad",
whereToWatchOrListenLink: "asd",
},
{
title: "asd",
description: "asdsad",
whereToWatchOrListenLink: "asd",
},
{
title: "asd",
description: "asdsad",
whereToWatchOrListenLink: "asd",
},
{
title: "asd",
description: "asdsad",
whereToWatchOrListenLink: "asd",
},
]}
episodes={[{ title: "asd", description: ".." }]}
></PodEpisodes>
<PodReviews
reviews={[
Expand Down
22 changes: 12 additions & 10 deletions src/components/home/Rating/Rating.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ export default function Rating({
...props
}: RatingProps): JSX.Element {
return (
<div className="bg-black bg-opacity-[35%] self-center border-opacity-5 grid grid-flow-row gap-[12px] border-white rounded-[3px] w-[300px] h-[130px] backdrop-blur-[50px] backdrop-brightness-[40%] backdrop-contrast-[525%] border py-3 px-4">
<h2 className="uppercase font-moderat text-[15px] text-tremor-brand-faint">Rating &bull; 88/100</h2>
{/* <ProgressBar value={75} color="teal" className="mt-3" /> */}
<CategoryBar
values={[20, 30, 30, 20]}
colors={["rose", "orange", "yellow", "emerald"]}
markerValue={88}
className="mt-3"
/>
</div>
<div className="grid h-[130px] w-[300px] grid-flow-row gap-[12px] self-center rounded-[3px] border border-white border-opacity-5 bg-black bg-opacity-[35%] px-4 py-3 backdrop-blur-[50px] backdrop-brightness-[40%] backdrop-contrast-[525%]">
<h2 className="font-moderat text-[15px] uppercase text-tremor-brand-faint">
Rating &bull; 88/100
</h2>
{/* <ProgressBar value={75} color="teal" className="mt-3" /> */}
<CategoryBar
values={[20, 30, 30, 20]}
colors={["rose", "orange", "yellow", "emerald"]}
markerValue={88}
className="mt-3"
/>
</div>
);
}

Expand Down

1 comment on commit 8bc4d1e

@vercel
Copy link

@vercel vercel bot commented on 8bc4d1e Sep 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.