// NewsSection.jsx — お知らせ・ブログ一覧 const NewsSection = () => { const news = [ { date: '2025.06.01', tag: 'お知らせ', tagColor: '#E5ECF5', tagText: '#122A52', title: '2025年度 ブルーベリー摘み取りシーズン開始のお知らせ(6月28日予定)' }, { date: '2025.05.15', tag: 'ブログ', tagColor: '#E4F0E2', tagText: '#3D6535', title: '今年の新品種ご紹介——80品種を超えました!' }, { date: '2025.04.20', tag: 'カフェ', tagColor: '#F0E0C8', tagText: '#6B4520', title: '春の期間限定メニュー「桜と甘酒ラテ」始まりました' }, { date: '2025.03.10', tag: 'お知らせ', tagColor: '#E5ECF5', tagText: '#122A52', title: '2025年度の摘み取り予約受付システムをリニューアルします' }, ]; return (
{/* Left */}
News & Blog

お知らせ・
農園ブログ

{/* Right: list */}
{news.map((item, i) => (
{item.date}
{item.tag}
{item.title}
))}
); }; Object.assign(window, { NewsSection });