blob: 2e6b23ac7a103443923ca16efec832e4cf3314a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Image from "next/image";
export default function TopMobile({ info }) {
return (
<div className="md:hidden">
<Image
src={info.coverImage}
width={500}
height={500}
alt="cover image"
className="md:hidden absolute top-0 left-0 -translate-y-24 w-full h-[30rem] object-cover rounded-sm shadow-lg brightness-75"
/>
<div className="absolute top-0 left-0 w-full -translate-y-24 h-[32rem] bg-gradient-to-t from-primary to-transparent from-50%"></div>
</div>
);
}
|