import Link from 'next/link'; const AboutNews = () => { const newsItems = [ { image: '/assets/img/home-1/news/news-1.jpg', category: 'Student Visa', comments: '08', date: '20 August ,2025', title: 'Step-by-Step Guide to Applying for a Student Visa', author: 'Sohel', authorImage: '/assets/img/home-1/news/client.png' }, { image: '/assets/img/home-1/news/news-2.jpg', category: 'IELTS / TOEFL', comments: '08', date: '20 August ,2025', title: 'Tips to Prepare Financial Documents for Visa Approval', author: 'Sohel', authorImage: '/assets/img/home-1/news/client.png' }, { image: '/assets/img/home-1/news/news-3.jpg', category: 'Study Abroad', comments: '08', date: '20 August ,2025', title: 'Post-Arrival Guide What Every Student Should Know', author: 'Sohel', authorImage: '/assets/img/home-1/news/client.png' } ]; return (
Visa Tips & Guides

Latest Insights & Updates

view all articies
{newsItems.map((item, index) => (
img {item.category}
Comment ({item.comments}) _ {item.date}

{item.title}

img By {item.author}
View Articles
))}
); }; export default AboutNews;