merge
This commit is contained in:
commit
0f9d84c137
|
|
@ -531,7 +531,7 @@ const FilterPage = () => {
|
||||||
height={1440}
|
height={1440}
|
||||||
alt="filter-image"
|
alt="filter-image"
|
||||||
placeholder={`data:image/svg+xml;base64,${toBase64(shimmer(700, 475))}`}
|
placeholder={`data:image/svg+xml;base64,${toBase64(shimmer(700, 475))}`}
|
||||||
src={image?.thumbnailLink}
|
src={image?.smallThumbnailLink || image?.thumbnailLink}
|
||||||
className="h-full lg:h-[300px] w-full object-cover rounded-lg transition-transform duration-300"
|
className="h-full lg:h-[300px] w-full object-cover rounded-lg transition-transform duration-300"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -545,7 +545,7 @@ const FilterPage = () => {
|
||||||
{/* <img src={image?.thumbnailLink} className="h-60 object-cover items-center justify-center cursor-pointer rounded-lg" /> */}
|
{/* <img src={image?.thumbnailLink} className="h-60 object-cover items-center justify-center cursor-pointer rounded-lg" /> */}
|
||||||
<div className="img-container h-60 bg-[#e9e9e9] cursor-pointer rounded-lg">
|
<div className="img-container h-60 bg-[#e9e9e9] cursor-pointer rounded-lg">
|
||||||
<ImageBlurry
|
<ImageBlurry
|
||||||
src={image?.thumbnailLink}
|
src={image?.smallThumbnailLink || image?.thumbnailLink}
|
||||||
alt={image?.title}
|
alt={image?.title}
|
||||||
style={{
|
style={{
|
||||||
objectFit: "contain",
|
objectFit: "contain",
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ const EventCalender = () => {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Event List */}
|
{/* Event List */}
|
||||||
<div className="space-y-3 max-h-[230px] overflow-y-auto pr-5">
|
<div className="space-y-3 max-h-[230px] overflow-y-auto pr-5" data-lenis-prevent>
|
||||||
<h3 className="text-lg font-semibold text-gray-800 dark:text-gray-200 mb-3">
|
<h3 className="text-lg font-semibold text-gray-800 dark:text-gray-200 mb-3">
|
||||||
Daftar Acara
|
Daftar Acara
|
||||||
</h3>
|
</h3>
|
||||||
|
|
|
||||||
|
|
@ -113,10 +113,10 @@ const NewContent = (props: { group: string; type: string }) => {
|
||||||
<Tabs value={selectedTab} onValueChange={setSelectedTab}>
|
<Tabs value={selectedTab} onValueChange={setSelectedTab}>
|
||||||
<TabsList className="flex gap-2 bg-transparent p-0">
|
<TabsList className="flex gap-2 bg-transparent p-0">
|
||||||
{[
|
{[
|
||||||
{ label: "Audio Visual", value: "video" },
|
|
||||||
{ label: "Audio", value: "audio" },
|
|
||||||
{ label: "Foto", value: "image" },
|
{ label: "Foto", value: "image" },
|
||||||
|
{ label: "Audio Visual", value: "video" },
|
||||||
{ label: "Teks", value: "text" },
|
{ label: "Teks", value: "text" },
|
||||||
|
{ label: "Audio", value: "audio" },
|
||||||
].map((tab) => (
|
].map((tab) => (
|
||||||
<TabsTrigger
|
<TabsTrigger
|
||||||
key={tab.value}
|
key={tab.value}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue