diff --git a/components/sponsors/GoldSponsorsList.ts b/components/sponsors/GoldSponsorsList.ts index fa465f02cb3..de218a0fe9c 100644 --- a/components/sponsors/GoldSponsorsList.ts +++ b/components/sponsors/GoldSponsorsList.ts @@ -7,5 +7,12 @@ export const goldSponsors: SponsorType[] = [ imageSrc: '/img/sponsors/postman.png', altText: 'Postman', imageClass: 'inline-block px-4 sm:h-18' + }, + { + name: 'IBM', + website: 'https://www.ibm.com', + imageSrc: '/img/sponsors/ibm.png', + altText: 'IBM', + imageClass: 'inline-block px-4 sm:h-14' } ]; diff --git a/components/sponsors/SilverSponsorsList.ts b/components/sponsors/SilverSponsorsList.ts index 8b2a4568511..29d8ca2fdf0 100644 --- a/components/sponsors/SilverSponsorsList.ts +++ b/components/sponsors/SilverSponsorsList.ts @@ -28,5 +28,12 @@ export const Silversponsors: SponsorType[] = [ altText: 'Aklivity', imageSrc: '/img/sponsors/aklivity_logo.png', imageClass: 'inline-block sm:h-9' + }, + { + name: 'SmartBear', + website: 'https://smartbear.com', + altText: 'SmartBear', + imageSrc: '/img/sponsors/smartbear_logo.png', + imageClass: 'inline-block sm:h-9' } ]; diff --git a/components/sponsors/SponsorsList.ts b/components/sponsors/SponsorsList.ts index cf0a43b676c..59258725bb7 100644 --- a/components/sponsors/SponsorsList.ts +++ b/components/sponsors/SponsorsList.ts @@ -1,18 +1,18 @@ import type { SponsorType } from '@/types/components/sponsors/SponsorType'; export const sponsors: SponsorType[] = [ - { - name: 'IBM', - website: 'https://www.ibm.com', - imageSrc: '/img/sponsors/ibm.png', - altText: 'IBM', - imageClass: 'inline-block px-4 sm:h-14' - }, { name: 'Solace', website: 'https://www.solace.com', imageSrc: '/img/sponsors/solace.png', altText: 'Solace', imageClass: 'inline-block px-4 sm:h-12' + }, + { + name: 'Gravitee.io', + website: 'https://www.gravitee.io', + imageSrc: '/img/sponsors/gravitee.io_logo.jpg', + altText: 'Gravitee.io', + imageClass: 'inline-block px-4 sm:h-14' } ]; diff --git a/markdown/blog/2024-may-summary.md b/markdown/blog/2024-may-summary.md index 533058c90d9..d3f9d8c2fd1 100644 --- a/markdown/blog/2024-may-summary.md +++ b/markdown/blog/2024-may-summary.md @@ -18,13 +18,13 @@ May has been a fantastic month for our community. We are delighted to announce t -gravitee +Gravitee.io -Furthermore, we are thrilled to welcome [SmartBear](http://www.smartbear.com/) as our Silver sponsor. +Furthermore, we are thrilled to welcome [SmartBear](http://www.smartbear.com/) as our Silver sponsor; thanks to [Frank Kilcommins](https://www.linkedin.com/in/frank-kilcommins/) for making this happen. -smartbear +SmartBear We cannot thank our sponsors enough for their unwavering support. Your contributions are truly invaluable. diff --git a/pages/newsletter.tsx b/pages/newsletter.tsx index 234acfbd336..05e59b090b6 100644 --- a/pages/newsletter.tsx +++ b/pages/newsletter.tsx @@ -4,6 +4,9 @@ import Head from '@/components/Head'; import Container from '@/components/layout/Container'; import NewsletterSubscribe from '@/components/NewsletterSubscribe'; +/** + * @description component that is used on landing page to embed newsletter and subscription option. + */ export default function NewsletterIndexPage() { return (
diff --git a/public/img/sponsors/gravitee.io_logo.jpg b/public/img/sponsors/gravitee.io_logo.jpg index 030fbf9b092..4b07bcc57d1 100644 Binary files a/public/img/sponsors/gravitee.io_logo.jpg and b/public/img/sponsors/gravitee.io_logo.jpg differ diff --git a/public/img/sponsors/sb_logo.jpg b/public/img/sponsors/sb_logo.jpg deleted file mode 100644 index f625eb3a49c..00000000000 Binary files a/public/img/sponsors/sb_logo.jpg and /dev/null differ diff --git a/public/img/sponsors/smartbear_logo.png b/public/img/sponsors/smartbear_logo.png new file mode 100644 index 00000000000..2ceb0b4c531 Binary files /dev/null and b/public/img/sponsors/smartbear_logo.png differ