import React from 'react' import Image from 'next/image' import Link from 'next/link' import { news } from '@/app/staticData' import ShowMore from './ui/ShowMore' interface NewsItem { id: number title: string description: string image: string slug: string } export default function News() { return (