Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/Logo and text-1-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/Logo and text-2-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/Logo and text-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/darklogotext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 11 additions & 2 deletions src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,21 @@ export default function AboutPage() {
<div className="container mx-auto px-4 py-4 flex items-center justify-between">
<div className="flex items-center space-x-2">
<Link href="/">
{/* Light theme image */}
<Image
src="/Logo and text-4.png"
alt="ChainRemit Logo"
width={150}
height={50}
className="w-[150px] h-[50px] object-fill block dark:hidden"
/>
{/* Dark theme image */}
<Image
src="/Logo and text-3.png"
alt="ChainRemit Logo"
width={150}
height={50}
className="w-[150px] h-[50px] object-fill"
className="w-[150px] h-[50px] object-fill hidden dark:block"
/>
</Link>
</div>
Expand Down Expand Up @@ -346,7 +355,7 @@ export default function AboutPage() {
</div>

{/* Stats Section */}
<Card className="mb-16 bg-gradient-to-r from-blue-600 to-purple-600 text-white border-0">
<Card className="mb-16 bg-gradient-to-r from-emerald-500 to-teal-600 text-white border-0">
<CardContent className="p-12">
<div className="text-center mb-8">
<h2 className="text-3xl font-bold mb-4">Our Impact</h2>
Expand Down
29 changes: 20 additions & 9 deletions src/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,26 @@ export default function ContactPage() {
<div className="min-h-screen bg-slate-50/95 dark:bg-slate-900/95">
<header className="border-b bg-white/80 backdrop-blur-sm dark:bg-gray-900/80">
<div className="container mx-auto px-4 py-4 flex items-center justify-between">
<Link href="/" className="flex items-center space-x-2">
<Image
src="/Logo and text-3.png"
alt="ChainRemit Logo"
width={150}
height={50}
className="w-[150px] h-[50px] object-fill"
/>
</Link>
<div className="flex items-center space-x-2">
<Link href="/">
{/* Light theme image */}
<Image
src="/Logo and text-4.png"
alt="ChainRemit Logo"
width={150}
height={50}
className="w-[150px] h-[50px] object-fill block dark:hidden"
/>
{/* Dark theme image */}
<Image
src="/Logo and text-3.png"
alt="ChainRemit Logo"
width={150}
height={50}
className="w-[150px] h-[50px] object-fill hidden dark:block"
/>
</Link>
</div>
<div className="flex items-center space-x-4">
<Link
href="/"
Expand Down
11 changes: 10 additions & 1 deletion src/app/dashboard/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,21 @@ const Sidebar: React.FC<SidebarProps> = ({
willChange: "transform, opacity",
}}
>
{/* Light theme image */}
<Image
src="/darklogotext.png"
alt="ChainRemit Logo"
width={80}
height={60}
className="w-[80px] h-[60px] object-fill dark:hidden"
/>
{/* Dark theme image */}
<Image
src="/logoText.png"
alt="ChainRemit Logo"
width={80}
height={60}
className="w-[80px] h-[60px] object-fill"
className="w-[80px] h-[60px] object-fill hidden dark:block"
/>
</motion.div>
)}
Expand Down
Loading
Loading