Skip to content

Commit

Permalink
feat: add GFDRR logo to landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Prajwalism committed Jul 24, 2024
1 parent f3b0e87 commit 414fe23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Binary file added src/frontend/src/assets/images/GFDRR-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import Image from '@Components/RadixComponents/Image';
import { motion } from 'framer-motion';
import worldBankLogo from '@Assets/images/LandingPage/WorldbankLogo.png';
import { fadeUpVariant } from '@Constants/animations';
import gfdrrLogo from '@Assets/images/GFDRR-logo.png';
import { FlexRow } from '@Components/common/Layouts';

export default function ClientAndPartners() {
return (
Expand All @@ -25,7 +27,10 @@ export default function ClientAndPartners() {
transition={{ duration: 0.7 }}
viewport={{ once: true }}
>
<Image src={worldBankLogo} alt="world bank logo" />
<FlexRow gap={10}>
<Image src={worldBankLogo} alt="world bank logo" />
<Image src={gfdrrLogo} alt="gfdrrLogo" width={260} />
</FlexRow>
</motion.div>
</div>
</div>
Expand Down

0 comments on commit 414fe23

Please sign in to comment.