Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion public/images/members/redhat.svg

This file was deleted.

Binary file removed public/images/quotes/marklittle.jpeg
Binary file not shown.
20 changes: 0 additions & 20 deletions src/app/[locale]/__tests__/__snapshots__/page.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1166,10 +1166,6 @@ exports[`Index page > renders correctly 1`] = `
aria-label="Go to testimonial 3"
class="h-2 rounded-full transition-all duration-300 w-2 bg-white/30 hover:bg-white/50"
/>
<button
aria-label="Go to testimonial 4"
class="h-2 rounded-full transition-all duration-300 w-2 bg-white/30 hover:bg-white/50"
/>
</div>
<button
aria-label="Next Testimonial"
Expand Down Expand Up @@ -1246,22 +1242,6 @@ exports[`Index page > renders correctly 1`] = `
/>
</div>
</button>
<button
aria-label="Red Hat Testimonial"
class="transition-all duration-300 opacity-60 hover:opacity-100 hover:scale-105"
>
<div
class="h-12 w-32 flex items-center justify-center"
>
<img
alt="Red Hat"
class="max-h-full max-w-full object-contain brightness-0 invert"
height="48"
src="/images/members/redhat.svg"
width="128"
/>
</div>
</button>
</div>
</div>
</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,6 @@ exports[`Business Benefits page > renders correctly 1`] = `
aria-label="Go to testimonial 3"
class="h-2 rounded-full transition-all duration-300 w-2 bg-white/30 hover:bg-white/50"
/>
<button
aria-label="Go to testimonial 4"
class="h-2 rounded-full transition-all duration-300 w-2 bg-white/30 hover:bg-white/50"
/>
</div>
<button
aria-label="Next Testimonial"
Expand Down Expand Up @@ -302,22 +298,6 @@ exports[`Business Benefits page > renders correctly 1`] = `
/>
</div>
</button>
<button
aria-label="Red Hat Testimonial"
class="transition-all duration-300 opacity-60 hover:opacity-100 hover:scale-105"
>
<div
class="h-12 w-32 flex items-center justify-center"
>
<img
alt="Red Hat"
class="max-h-full max-w-full object-contain brightness-0 invert"
height="48"
src="/images/members/redhat.svg"
width="128"
/>
</div>
</button>
</div>
</div>
</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ exports[`Members page > renders correctly 1`] = `
class="list-disc list-inside space-y-2 text-left"
>
<li>
Collaborate with leading Java vendors like Microsoft, Red Hat, IBM, Google, Alibaba, and Rivos.
Collaborate with leading Java vendors like Microsoft, IBM, Google, Alibaba, and Rivos.
</li>
<li>
Ensure your enterprise use cases shape the future quality standards of Java.
Expand Down
2 changes: 1 addition & 1 deletion src/app/[locale]/members/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const initiatives = [
<>
<ul className="list-disc list-inside space-y-2 text-left">
<li>
Collaborate with leading Java vendors like Microsoft, Red Hat, IBM,
Collaborate with leading Java vendors like Microsoft, IBM,
Google, Alibaba, and Rivos.
</li>
<li>
Expand Down
6 changes: 0 additions & 6 deletions src/data/members.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,6 @@
"url": "https://www.fujitsu.com",
"tier": "enterprise"
},
{
"name": "Red Hat",
"logo": "members/redhat.svg",
"url": "https://www.redhat.com",
"tier": "enterprise"
},
{
"name": "iJUG",
"logo": "members/ijug.png",
Expand Down
9 changes: 0 additions & 9 deletions src/data/testimonials.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@
"companyName": "Azul Systems",
"type": "member"
},
{
"quote": "As a leading provider of enterprise open source software solutions, Red Hat supports the Eclipse Adoptium Working Group. We contribute to Eclipse Temurin and AQAvit to deliver high-performance, enterprise-ready OpenJDK builds backed by a secure supply chain, suitable for production deployment. This aligns with our mission to foster secure, stable, and innovative technologies.",
"name": "Mark Little",
"role": "VP Middleware Engineering, Red Hat",
"image": "/images/quotes/marklittle.jpeg",
"companyLogo": "/images/members/redhat.svg",
"companyName": "Red Hat",
"type": "member"
},
{
"quote": "We are a software company based in Lyon, France. We use open source software, components and libraries to create and operate reliable, durable and fancy web-based applications when no software editor provides a solution matching our custom requirements. As our activity focuses on providing long-lived (10 years), highly specialized applications, built and operated by small teams (1-5 persons), we need to find the good options to maintain our application up-to-date and allow regular releases despite constrained roadmap. Software strategy (tools, libraries) is essential to ensure the quality and productivity level needed to keep the rhythm without burning developers. As we commit, as individuals and as a company, to common interest, we choose to dedicate a significant part of our profit to the environment and to the open-source projects that support our activity. Beyond our own activity, we consider open source as a key part for computer science education and software innovation.",
"name": "Laurent Almeras",
Expand Down
3 changes: 0 additions & 3 deletions src/hooks/__tests__/fetchMarketplace.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ describe("getAllPkgsForVersion", () => {
expect(getImageForDistribution("temurin")).toBe(
"/images/vendors/adoptium-logo.png"
);
expect(getImageForDistribution("redhat")).toBe(
"/images/members/redhat.svg"
);
expect(getImageForDistribution("zulu")).toBe(
"/images/vendors/azul-logo.png"
);
Expand Down
2 changes: 0 additions & 2 deletions src/hooks/fetchMarketplace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ export function getImageForDistribution(distribution: string) {
switch (distribution) {
case "temurin":
return "/images/vendors/adoptium-logo.png"
case "redhat":
return "/images/members/redhat.svg"
case "zulu":
return "/images/vendors/azul-logo.png"
case "semeru":
Expand Down
Loading