Skip to content

Commit 377dcbd

Browse files
committed
feat: rebrand to HELPDESK.AI and update official logos
- Updated TopNav, LandingPage, and AdminSidebar to use favicon.png as the official logo. - Renamed brand from 'Emerald Prime' to 'HELPDESK.AI' across all components. - Updated index.html title and favicon link. - Updated 'Powered by' tagline in CreateTicket.jsx.
1 parent 3442ac0 commit 377dcbd

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Frontend/src/admin/components/AdminSidebar.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ const AdminSidebar = ({ isMobile, onClose }) => {
4646
{/* Logo Section */}
4747
<div className="p-6 lg:p-8 border-b border-slate-800/50 flex justify-center lg:justify-start">
4848
<div className="flex items-center gap-3">
49-
<div className="w-10 h-10 bg-emerald-600 rounded-xl flex items-center justify-center text-white font-black shadow-lg shadow-emerald-500/20 shrink-0">
50-
<ShieldCheck size={24} />
49+
<div className="w-10 h-10 flex items-center justify-center shrink-0">
50+
<img src="/favicon.png" alt="Logo" className="w-9 h-9 object-contain" />
5151
</div>
5252
<div className="hidden lg:block animate-in fade-in duration-500">
53-
<h1 className="text-white font-black tracking-tighter leading-none text-xl italic">PRIME.</h1>
53+
<h1 className="text-white font-black tracking-tighter leading-none text-xl italic">HELPDESK.AI</h1>
5454
<p className="text-[10px] text-slate-500 font-bold uppercase tracking-[0.2em] mt-1">Admin Console</p>
5555
</div>
5656
</div>

Frontend/src/pages/LandingPage.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ export default function LandingPage() {
8080
<div className="flex justify-between items-center h-16">
8181
{/* Logo */}
8282
<div className="flex items-center gap-2 cursor-pointer" onClick={() => navigate('/')}>
83-
<div className="bg-emerald-900 p-1.5 rounded-lg">
84-
<BrainCircuit className="w-5 h-5 text-white" />
83+
<div className="flex items-center justify-center p-1">
84+
<img src="/favicon.png" alt="H" className="w-8 h-8 object-contain" />
8585
</div>
86-
<span className="font-bold text-xl tracking-tight text-emerald-900">HelpDesk.ai</span>
86+
<span className="font-black text-2xl tracking-tighter text-emerald-900 italic uppercase">HelpDesk.ai</span>
8787
</div>
8888

8989
{/* Desktop Menu */}

Frontend/src/user/components/TopNav.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ const TopNav = () => {
2222
<div className="max-w-[1100px] mx-auto px-6 h-16 flex items-center justify-between">
2323
{/* Left: Logo */}
2424
<div className="flex items-center gap-3">
25-
<div className="size-8 text-emerald-600 flex items-center justify-center">
26-
<Box className="w-6 h-6" />
25+
<div className="flex items-center justify-center overflow-hidden">
26+
<img src="/favicon.png" alt="HELPDESK.AI Logo" className="w-7 h-7 object-contain" />
2727
</div>
28-
<h1 className="text-lg font-bold tracking-tight text-gray-900">Emerald Prime</h1>
28+
<h1 className="text-xl font-black tracking-tighter text-gray-900 italic">HELPDESK.AI</h1>
2929
</div>
3030

3131
{/* Center: Navigation Links */}

Frontend/src/user/pages/CreateTicket.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ const CreateTicket = () => {
502502
</Button>
503503
<div className="flex items-center justify-center gap-2 text-xs text-gray-400 font-medium">
504504
<BrainCircuit size={14} />
505-
Powered by Emerald AI Routing
505+
Powered by HelpDesk.ai Routing
506506
</div>
507507
</form>
508508
</CardContent>

0 commit comments

Comments
 (0)