diff --git a/components/sponsors/GoldSponsorsList.ts b/components/sponsors/GoldSponsorsList.ts index de218a0fe9c..a46f464d792 100644 --- a/components/sponsors/GoldSponsorsList.ts +++ b/components/sponsors/GoldSponsorsList.ts @@ -1,13 +1,6 @@ import type { SponsorType } from '@/types/components/sponsors/SponsorType'; export const goldSponsors: SponsorType[] = [ - { - name: 'Postman', - website: 'https://www.postman.com', - imageSrc: '/img/sponsors/postman.png', - altText: 'Postman', - imageClass: 'inline-block px-4 sm:h-18' - }, { name: 'IBM', website: 'https://www.ibm.com', diff --git a/components/sponsors/SilverSponsors.tsx b/components/sponsors/SilverSponsors.tsx index fbc6d88ed8c..62c8868980a 100644 --- a/components/sponsors/SilverSponsors.tsx +++ b/components/sponsors/SilverSponsors.tsx @@ -20,7 +20,7 @@ export default function SilverSponsors({ className = '' }: SilverSponsorsProps): key={index} href={sponsor.website} target='_blank' - className='relative block w-2/3 p-4 text-center sm:w-1/2 sm:p-0 md:w-1/3 lg:w-1/5' + className='relative block w-2/3 p-4 text-center sm:w-1/2 md:w-1/3 lg:w-1/4' rel='noopener noreferrer' data-testid='SilverSponsors-link' > diff --git a/components/sponsors/SilverSponsorsList.ts b/components/sponsors/SilverSponsorsList.ts index 29d8ca2fdf0..6c86f88eaa8 100644 --- a/components/sponsors/SilverSponsorsList.ts +++ b/components/sponsors/SilverSponsorsList.ts @@ -35,5 +35,19 @@ export const Silversponsors: SponsorType[] = [ altText: 'SmartBear', imageSrc: '/img/sponsors/smartbear_logo.png', imageClass: 'inline-block sm:h-9' + }, + { + name: 'HDI', + website: 'https://www.hdi.global/', + altText: 'HDI', + imageSrc: '/img/sponsors/hdi_logo.png', + imageClass: 'inline-block sm:h-9' + }, + { + name: 'Route4Me', + website: 'https://route4me.com', + altText: 'Best Route Planning and Route Optimization Software', + imageSrc: '/img/sponsors/route4me_logo.png', + imageClass: 'inline-block sm:h-9' } ]; diff --git a/components/sponsors/SponsorsList.ts b/components/sponsors/SponsorsList.ts index 59258725bb7..bdc75f3a714 100644 --- a/components/sponsors/SponsorsList.ts +++ b/components/sponsors/SponsorsList.ts @@ -14,5 +14,12 @@ export const sponsors: SponsorType[] = [ imageSrc: '/img/sponsors/gravitee.io_logo.jpg', altText: 'Gravitee.io', imageClass: 'inline-block px-4 sm:h-14' + }, + { + name: 'Postman', + website: 'https://www.postman.com', + imageSrc: '/img/sponsors/postman.png', + altText: 'Postman', + imageClass: 'inline-block px-4 sm:h-18' } ]; diff --git a/public/img/sponsors/hdi_logo.png b/public/img/sponsors/hdi_logo.png new file mode 100644 index 00000000000..6f26516e5db Binary files /dev/null and b/public/img/sponsors/hdi_logo.png differ diff --git a/public/img/sponsors/route4me_logo.png b/public/img/sponsors/route4me_logo.png new file mode 100644 index 00000000000..46df6d2f844 Binary files /dev/null and b/public/img/sponsors/route4me_logo.png differ