1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Center the 'Shows' heading

This commit is contained in:
Cooper Ransom 2024-04-08 22:13:15 -04:00
parent bc766b35cb
commit 0ac3c588dd

View file

@ -269,7 +269,7 @@ export function Discover() {
onMouseLeave={handleMouseLeave}
onWheel={(e) => handleWheel(e, categorySlug)}
>
{medias.slice(0, 25).map((media) => (
{medias.slice(0, 20).map((media) => (
<a
key={media.id}
onClick={
@ -500,10 +500,10 @@ export function Discover() {
{renderMovies(genreMovies[genre.id] || [], genre.name)}
</div>
))}
<div className="flex inline-block mt-6">
<Divider marginClass="mr-5 my-5" />
<div className="flex items-center mt-6">
<Divider marginClass="mr-5" />
<h1 className="text-4xl font-bold text-white mx-auto">Shows</h1>
<Divider marginClass="ml-5 my-5" />
<Divider marginClass="ml-5" />
</div>
{tvCategories.map((category) => (
<div