Skip to content

Commit

Permalink
Merge pull request #187 from wheval/fix/delete-header
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianvrj authored Nov 5, 2024
2 parents 6a9d478 + 73cfa2e commit 8acadc3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions frontend/gostarkme-web/app/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,13 @@ const Dashboard = () => {
href: "/"
}}
/>
<h1 className="text-3xl font-bold ml-30 mb-6 flex items-center self-start m-10 ml-28">
Latest Funds
<span className="ml-2 text-yellow-400">&#x2728;</span>
</h1>

{loading && <div className="text-center text-gray-500">
{loading && <div className="text-center text-gray-500 mt-12">
Loading funds ...
</div>}

{funds.length !== 0 && !loading &&
<div className="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-6 md:gap-x-[138px] md:gap-y-[84px]">
<div className="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-6 md:gap-x-[138px] md:gap-y-[84px] mt-10 lg:mt-12">
{funds.map((fund: { type: string; title: string; description: string; fund_id: string }, index: number) => (
<FundCards key={index} fund={fund} index={index} />
))}
Expand Down

0 comments on commit 8acadc3

Please sign in to comment.