// 彤冠茶莊 website — Journal const { Tag: JTag } = window.TongguanTeaDesignSystem_a1a7a1; function JournalPage({ t, lang, journal, go }) { React.useEffect(() => { if (window.lucide) window.lucide.createIcons(); }); const [lead, ...rest] = journal; return (
{t.journalSec.kicker}

{t.journalSec.title}

{/* lead post */}
{lead.cat[lang]} {lead.date}

{lead.title[lang]}

{lead.excerpt[lang]}

{rest.map((j) => (
{j.cat[lang]} {j.date}

{j.title[lang]}

{j.excerpt[lang]}

))}
); } window.JournalPage = JournalPage;