update 14/01

This commit is contained in:
2026-01-14 17:31:59 +07:00
parent 229bdbde54
commit f5de4a5313
36 changed files with 14527 additions and 2423 deletions

View File

@@ -0,0 +1,18 @@
'use client';
import Image from 'next/image';
import Link from 'next/link';
export default function ImageComponent({item}:any){
return(
<Link href={item.desUrl}>
<Image
src={item.fileUrl}
alt={item.name}
width={100}
height={100}
className="block w-full"
unoptimized
/>
</Link>
)
}