From 724d621e597f450201568dbbe0c4ee5f9598c36a Mon Sep 17 00:00:00 2001 From: sirpiglr <49359077-sirpiglr@users.noreply.replit.com> Date: Tue, 16 Dec 2025 00:32:26 +0000 Subject: [PATCH] Add personalized welcome message to the admin dashboard Adds a dynamic greeting with the user's name and time-of-day specific salutation to the admin dashboard upon successful login, enhancing user experience. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 279f1558-c0e3-40e4-8217-be7e9f4c6eca Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 720e83ee-8cea-4268-b841-62fa1c4efbb0 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/b984cb14-1d19-4944-922b-bc79e821ed35/279f1558-c0e3-40e4-8217-be7e9f4c6eca/WjFB7uq Replit-Helium-Checkpoint-Created: true --- client/src/pages/admin.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/client/src/pages/admin.tsx b/client/src/pages/admin.tsx index 07502bd..f378036 100644 --- a/client/src/pages/admin.tsx +++ b/client/src/pages/admin.tsx @@ -120,6 +120,18 @@ export default function Admin() {
+ {new Date().getHours() < 12 ? 'Good morning' : new Date().getHours() < 17 ? 'Good afternoon' : 'Good evening'}. Here's your ecosystem overview. +
+