import Link from "next/link"; import { NewsDetails } from "@/services/NewsDetails"; // Ensure the correct import export default function NewsSection() { return (

NEWS


{NewsDetails.map((news) => ( // Use the correct variable name
{news.category} {news.date}

{news.title}

))}
一覧をみる
); }