// CreatedAt GMT + 7 const createdAtWIB = new Date( new Date().getTime() + 7 * 60 * 60 * 1000 ); created_at const formatWIB = (date: string) => { if (!date) return "-"; return new Date(date).toLocaleString("id-ID", { timeZone: "Asia/Jakarta", year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit", }); };