Skip to content

Commit

Permalink
partners section
Browse files Browse the repository at this point in the history
  • Loading branch information
devsisingh committed Jul 23, 2024
1 parent 45fff63 commit df4b41b
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 0 deletions.
Binary file added public/Numa.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/foundance.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/ipfs.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/manta.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/peaq.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/unilend.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import WinSection from "@/components/WinSection";
import WinnersPage from "@/components/winners";
import Cuttingedge from "@/components/Cuttingedge";
import SuccessRoad from "@/components/SuccessRoad";
import Partners from "@/components/Partners";
import { cardDetails } from "@/utils/data";
import Image from "next/image";
import Link from "next/link";
Expand Down Expand Up @@ -113,6 +114,7 @@ export default function Home() {
<Newsletter />
<Cuttingedge />
<SuccessRoad />
<Partners />
</main>
</>
);
Expand Down
45 changes: 45 additions & 0 deletions src/components/Partners.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import React from 'react'

const Partners = () => {

const greengradient = `
linear-gradient(
to bottom,
#E7E7EA 50%,
#11D9C5 100%
)
`;

return (
<div className=''>
<div className='text-5xl mb-20 text-center'>Partners and Supporters</div>
<div className='py-20'
style={{
background: greengradient,
}}>
<div className='flex justify-between items-center'>
<img src="/aptos.png" className="w-1/4 px-24 py-4"/>
<img src="/peaq.png" className="w-1/4 px-24 -mt-20 py-4"/>
<img src="/unilend.png" className="w-1/4 px-24 mt-10 py-4"/>
<img src="/manta.png" className="w-1/4 px-40 py-4"/>
</div>

<div className='flex justify-between items-center'>
<img src="/akindo.png" className="w-1/4 px-24 py-4"/>
<img src="/numa.png" className="w-1/4 px-24 -mt-40 -ml-40 py-4"/>
<img src="/aptos.png" className="w-1/4 px-24 -ml-40 py-4"/>
<img src="/ipfs.png" className="w-1/4 px-24 mr-20 py-4"/>
</div>

<div className='flex justify-between items-center'>
<img src="/foundance.png" className="w-1/4 px-40 py-4"/>
<img src="/filecoin.png" className="w-1/4 px-20 -mt-20 py-4"/>
<img src="/ivs.png" className="w-1/4 px-24 py-4"/>
<img src="/soonami.png" className="w-1/4 px-24 -mt-20 py-4"/>
</div>
</div>
</div>
)
}

export default Partners;

0 comments on commit df4b41b

Please sign in to comment.