Skip to content

Commit cd5bc4b

Browse files
committed
add image
1 parent 9c66ad2 commit cd5bc4b

File tree

6 files changed

+473
-9
lines changed

6 files changed

+473
-9
lines changed

components/index/aboutTwo.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import Link from "next/link";
3-
import feature4 from "../../public/images/features4.jpg";
3+
import feature4 from "../../public/images/agents_icons.png";
44

55
import { MdKeyboardArrowRight } from "../../assets/icons/vander";
66
import Image from "next/image";
@@ -61,13 +61,13 @@ export default function AgentAboutTwo() {
6161
</Link>
6262
</div>
6363
</div>
64-
<div className="relative overflow-hidden rounded-lg border border-amber-400/5 bg-gradient-to-tl to-amber-400/30 from-fuchsia-600/30 dark:to-amber-400/50 dark:from-fuchsia-600/50 ps-6 pt-6 lg:me-8">
64+
<div className="relative overflow-hidden rounded-lg border border-amber-400/5 bg-gradient-to-tl to-amber-400/30 from-fuchsia-600/30 dark:to-amber-400/50 dark:from-fuchsia-600/50">
6565
<Image
6666
height={800}
6767
width={800}
68-
src={feature4}
69-
className="ltr:rounded-tl-lg rtl:rounded-tr-lg"
70-
alt=""
68+
src={feature4}
69+
className="ltr:rounded-tl-lg rtl:rounded-tr-lg"
70+
alt=""
7171
/>
7272
</div>
7373
</div>

pages/agents/[agent].tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const AgentPage = ({agent}: {agent: Agent}) => {
6969
</svg>
7070
</div>
7171
</div>
72-
<section className="flex flex-col w-full">
72+
<section className="flex flex-col w-full min-h-screen/3">
7373
<div className='container'>
7474
<div className='flex flex-row w-full justify-between'>
7575
<div className='flex flex-col gap-6'>
@@ -93,7 +93,7 @@ const AgentPage = ({agent}: {agent: Agent}) => {
9393
<span className="inline-flex items-center">
9494
View in Registry
9595
{/* <FiDownload className="ml-2"/> */}
96-
<CiLink className="h-4 w-4" />
96+
<CiLink className="h-4 w-4 " />
9797
</span>
9898
</Link>
9999
</div>

pages/agents/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const AgentsPage = ({agents, additionalAgents}: {agents: Agent[], additionalAgen
126126
<h2 className='text-lg font-bold' style={{paddingTop: "64px"}}>Additional Agents <span className='text-sm font-semibold'>Comming Soon...</span> </h2>
127127
<p className='text-md text-slate-300'>Discover the most popular agents in the Marketplace </p>
128128
<div className="grid lg:grid-cols-3 md:grid-cols-2 grid-cols-2 mt-6 gap-6">
129-
{agents.map((item, index) => {
129+
{additionalAgents.map((item, index) => {
130130
const config = genConfig(item.title);
131131
return (
132132
<div className="flex flex-col overflow-hidden bg-white dark:bg-slate-900" key={index}>

public/images/agents_icons.png

109 KB
Loading

0 commit comments

Comments
 (0)