Skip to content

Commit 921d7aa

Browse files
committed
feat: update poster image url path
1 parent e5f0b9f commit 921d7aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/(website)/(pages)/poster/page.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function PosterPage() {
4242
>
4343
<div className="group relative flex justify-center">
4444
<Image
45-
src={`/poster/${poster.image}`}
45+
src={`/2025/poster/${poster.image}`}
4646
alt={poster.title}
4747
width={400}
4848
height={10}
@@ -98,10 +98,10 @@ export default function PosterPage() {
9898
/>
9999
</svg>
100100
</button>
101-
<div className="flex w-full flex-col overflow-y-auto md:overflow-visible md:flex-row">
102-
<div className="relative mb-6 min-h-[60vh] aspect-[3/4] w-full overflow-hidden md:mb-0 md:min-h-0 md:aspect-[4/3] md:w-1/2">
101+
<div className="flex w-full flex-col overflow-y-auto md:flex-row md:overflow-visible">
102+
<div className="relative mb-6 aspect-[3/4] min-h-[60vh] w-full overflow-hidden md:mb-0 md:aspect-[4/3] md:min-h-0 md:w-1/2">
103103
<Image
104-
src={`/poster/${selectedPoster.image}`}
104+
src={`/2025/poster/${selectedPoster.image}`}
105105
alt={selectedPoster.title}
106106
fill
107107
className="rounded-lg object-contain"

0 commit comments

Comments
 (0)