Update 8 files

- /src/app/admin/login/AdminLoginClient.tsx
- /src/app/admin/login/page.tsx
- /src/api.ts
- /src/app/api/auth/[...nextauth]/route.ts
- /src/lib/api.ts
- /src/lib/auth.ts
- /src/components/MovieCard.tsx
- /src/components/MoviePlayer.tsx
This commit is contained in:
2024-12-24 14:58:59 +00:00
parent 2bdea011b6
commit ca9d2002fc
8 changed files with 16 additions and 180 deletions

View File

@@ -87,7 +87,7 @@ const Rating = styled.div`
right: 8px;
padding: 4px 8px;
border-radius: 6px;
font-size: 17px;
font-size: 12px;
font-weight: 600;
color: white;
`;

View File

@@ -210,7 +210,7 @@ export default function MoviePlayer({ id, title, poster, imdbId }: MoviePlayerPr
<PlayerContainer>
{settings.defaultPlayer === 'lumex' && imdbId ? (
<StyledIframe
src={`${process.env.NEXT_PUBLIC_LUMEX_URL}?imdb_id=${imdbId}`}
src={`https://p.lumex.site/k1GbtOF2cX6p?&imdb_id=${imdbId}`}
allow="fullscreen"
loading="lazy"
/>