We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc007a0 commit 92181beCopy full SHA for 92181be
src/app/university/[id]/UniversityDetail.tsx
@@ -19,8 +19,14 @@ interface UniversityDetailProps {
19
const UniversityDetail = ({ university }: UniversityDetailProps) => {
20
return (
21
<>
22
- <div className="relative z-0 h-[236px] w-full bg-blue-100">
23
- <Image alt="대학 이미지" src={convertImageUrl(university.backgroundImageUrl)} fill className="object-cover" />
+ <div className="z-0 h-[236px] w-full bg-blue-100">
+ <Image
24
+ alt="대학 이미지"
25
+ width={390}
26
+ height={236}
27
+ src={convertImageUrl(university.backgroundImageUrl)}
28
+ className="object-cover"
29
+ />
30
</div>
31
<div className="z-30 -mt-[66px] rounded-t-3xl bg-white px-5">
32
<TitleSection
0 commit comments