Skip to content

Commit 940331b

Browse files
committed
feat: update package description and enhance incident date formatting #371
1 parent e6b5600 commit 940331b

File tree

2 files changed

+22
-17
lines changed

2 files changed

+22
-17
lines changed

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@
33
"version": "3.2.13",
44
"private": false,
55
"license": "MIT",
6-
"description": "Kener: An open-source Node.js status page application for real-time service monitoring, incident management, and customizable reporting. Simplify service outage tracking, enhance incident communication, and ensure a seamless user experience.",
6+
"description": "Kener is a modern, open-source status page application built with Node.js. It provides real-time monitoring, uptime tracking, incident management, and beautiful dashboards. Perfect for DevOps teams, SaaS providers, and businesses needing reliable service status communication with minimal setup.",
77
"author": "Raj Nandan Sharma <[email protected]>",
88
"keywords": [
9-
"Node.js application",
10-
"Open-source status page",
11-
"Service monitoring tool",
12-
"Real-time incident management",
13-
"Customizable reporting",
14-
"Service outage tracker",
15-
"User-friendly dashboard",
16-
"Incident communication platform",
17-
"Scalable monitoring solution",
18-
"Community-driven software",
19-
"Website status tracker",
20-
"Incident response tool",
21-
"System status monitoring",
22-
"Service reliability management",
23-
"Incident alert system"
9+
"status page",
10+
"uptime monitoring",
11+
"incident management",
12+
"DevOps tools",
13+
"service reliability",
14+
"open source",
15+
"Node.js",
16+
"dashboard",
17+
"system monitoring",
18+
"status alerts",
19+
"outage communication",
20+
"API monitoring",
21+
"SaaS status",
22+
"performance metrics",
23+
"status reporting"
2424
],
2525
"repository": {
2626
"type": "git",

src/routes/(kener)/incidents/[month]/+page.svelte

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,12 @@
111111

112112
<h1 class=" text-xl font-semibold leading-tight">
113113
{l(data.lang, "No Incident in %date", {
114-
date: f(parse(data.thisMonthName, "MMMM-yyyy", new Date()), "MMMM, yyyy", selectedLang, $page.data.localTz)
114+
date: f(
115+
new Date(data.midnightMonthStartUTCTimestamp * 1000),
116+
"MMMM, yyyy",
117+
selectedLang,
118+
$page.data.localTz
119+
)
115120
})}
116121
</h1>
117122
</div>

0 commit comments

Comments
 (0)