// components/Spotlight.tsx import Image from 'next/image'; const logos = [ { src: '/images/logo.png', alt: 'TOI' }, // Replace with actual logo path { src: '/images/logo.png', alt: 'The Tribune' }, // Replace with actual logo path { src: '/images/logo.png', alt: 'ET' }, // Replace with actual logo path { src: '/images/logo.png', alt: 'The Hindu' }, // Replace with actual logo path ]; // { src: '/images/logos/toi-logo.png', alt: 'TOI' }, // Replace with actual logo path // { src: '/images/logos/tribune-logo.png', alt: 'The Tribune' }, // Replace with actual logo path // { src: '/images/logos/et-logo.png', alt: 'ET' }, // Replace with actual logo path // { src: '/images/logos/hindu-logo.png', alt: 'The Hindu' }, // Replace with actual logo path export function Spotlight() { return (
{logos.map((logo, index) => (
{logo.alt}
))}
); } // return ( //
//

In the Spotlight

//
// {logos.map((logo, index) => ( //
//
// {logo.alt} //
//
// ))} //
//
// );