Skip to content

Commit e3f65ed

Browse files
committed
add agentcash logo
1 parent 467f02f commit e3f65ed

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

apps/scan/src/app/(app)/(home)/(overview)/_components/sellers/featured-columns.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
Server,
1212
Users,
1313
} from 'lucide-react';
14+
import Image from 'next/image';
1415
import Link from 'next/link';
1516
import { useState } from 'react';
1617

@@ -203,7 +204,24 @@ export const featuredServiceColumns: ExtendedColumnDef<FeaturedServiceItem>[] =
203204
},
204205
{
205206
accessorKey: 'tryIt',
206-
header: () => <></>,
207+
header: () => (
208+
<div className="flex items-center justify-center" title="AgentCash">
209+
<Image
210+
src="/agentcash-light.svg"
211+
alt="AgentCash"
212+
width={16}
213+
height={16}
214+
className="size-4 block dark:hidden"
215+
/>
216+
<Image
217+
src="/agentcash-dark.svg"
218+
alt="AgentCash"
219+
width={16}
220+
height={16}
221+
className="size-4 hidden dark:block"
222+
/>
223+
</div>
224+
),
207225
cell: ({ row }) => {
208226
const origin = row.original.origins[0]?.origin;
209227
if (!origin) return null;

0 commit comments

Comments
 (0)