feat: add JAIBEN brand logo to header and navigation components
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
'use client';
|
||||
|
||||
import Link from 'next/link';
|
||||
import Image from 'next/image';
|
||||
import { Bell, Package, DollarSign, Bike, AlertCircle, CheckCircle } from 'lucide-react';
|
||||
|
||||
const mockNotifications = [
|
||||
@@ -21,8 +22,11 @@ export default function InvestorNotification({ isMobile = false }: { isMobile?:
|
||||
return (
|
||||
<div className="lg:hidden fixed top-0 left-0 right-0 h-14 bg-white border-b border-slate-200 flex items-center justify-between px-4 z-40">
|
||||
<div className="flex items-center gap-2">
|
||||
<h1 className="text-lg font-extrabold text-accent">JAIBEN</h1>
|
||||
<span className="text-[10px] text-accent font-medium">Investor</span>
|
||||
<Image src="/jaiben.png" alt="JAIBEN Logo" width={32} height={32} className="object-contain h-7 w-auto" priority />
|
||||
<div className="flex flex-col">
|
||||
<h1 className="text-lg font-extrabold text-accent leading-none">JAIBEN</h1>
|
||||
<span className="text-[10px] text-accent font-medium leading-none">Investor</span>
|
||||
</div>
|
||||
</div>
|
||||
<Link href="/investor/notifications" className="relative p-2 hover:bg-slate-100 rounded-lg transition-colors">
|
||||
<Bell className="w-5 h-5 text-slate-600" />
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
'use client';
|
||||
|
||||
import Link from 'next/link';
|
||||
import Image from 'next/image';
|
||||
import { usePathname } from 'next/navigation';
|
||||
import { useState, useEffect } from 'react';
|
||||
import {
|
||||
@@ -165,9 +166,12 @@ export default function Sidebar() {
|
||||
`}>
|
||||
<div className="p-4 border-b border-slate-100">
|
||||
<div className="flex items-center justify-between">
|
||||
<div>
|
||||
<h1 className="text-xl font-extrabold text-accent">JAIBEN</h1>
|
||||
<p className="text-xs text-slate-500">Mobility Ltd</p>
|
||||
<div className="flex items-center gap-2">
|
||||
<Image src="/jaiben.png" alt="JAIBEN Logo" width={40} height={40} className="object-contain h-8 w-auto" priority />
|
||||
<div>
|
||||
<h1 className="text-xl font-extrabold text-accent leading-tight">JAIBEN</h1>
|
||||
<p className="text-xs text-slate-500 leading-none">Mobility Ltd</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<div className="px-2 py-1 bg-accent-light rounded text-xs font-semibold text-accent">
|
||||
|
||||
Reference in New Issue
Block a user