Skip to content

Commit

Permalink
fix: remove saxo (datahub-project#11127)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin authored Aug 9, 2024
1 parent 3a38415 commit 5b16252
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 33 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ Here are the companies that have officially adopted DataHub. Please feel free to
- [Peloton](https://www.onepeloton.com)
- [PITS Global Data Recovery Services](https://www.pitsdatarecovery.net/)
- [Razer](https://www.razer.com)
- [Saxo Bank](https://www.home.saxo)
- [Showroomprive](https://www.showroomprive.com/)
- [SpotHero](https://spothero.com)
- [Stash](https://www.stash.com)
Expand Down
11 changes: 0 additions & 11 deletions docs-website/adoptionStoriesIndexes.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,6 @@
"category": "B2B & B2C",
"description": "<i>“We looked around for data catalog tool, and DataHub was a clear winner.”</i> <br /> <br /> Zynga levels up data management using DataHub, highlighting its role in enhancing data management, tracing data lineage, and ensuring data quality."
},
{
"name": "Saxo Bank",
"slug": "saxo-bank",
"imageUrl": "/img/logos/companies/saxobank.svg",
"imageSize": "default",
"link": "https://blog.datahubproject.io/enabling-data-discovery-in-a-data-mesh-the-saxo-journey-451b06969c8f",
"linkType": "blog",
"tagline": "Enabling Data Discovery in a Data Mesh",
"category": "Financial & Fintech",
"description": "Saxo Bank adopted DataHub to enhance data quality and streamline governance, facilitating efficient data management through self-service capabilities. <br /><br />By integrating Apache Kafka and Snowflake with DataHub, the bank embraced Data Mesh principles to democratize data, support rapid growth, and improve business processes."
},
{
"name": "MediaMarkt Saturn",
"slug": "mediamarkt-saturn",
Expand Down
42 changes: 21 additions & 21 deletions docs-website/src/pages/_components/Logos/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,36 +168,36 @@ export const CompanyLogos = () => (
modules={[Pagination]}
className={clsx("mySwiper", styles.companyWrapper)}
>
{companies.map((company, idx) => (
<SwiperSlide key={idx}>
{company.link ? (
<a
href={`/adoption-stories#${company.slug}`}
>
{companies
.filter((company) => company.imageUrl) // Filter companies with imageUrl
.map((company, idx) => (
<SwiperSlide key={idx}>
{company.link ? (
<a href={`/adoption-stories#${company.slug}`}>
<img
src={useBaseUrl(company.imageUrl)}
alt={company.name}
title={company.name}
className={clsx(
styles.companyLogo,
styles.companyLogoWithLink,
styles[company.imageSize]
)}
/>
</a>
) : (
<img
src={useBaseUrl(company.imageUrl)}
alt={company.name}
title={company.name}
className={clsx(
styles.companyLogo,
styles.companyLogoWithLink,
styles[company.imageSize]
)}
/>
</a>
) : (
<img
src={useBaseUrl(company.imageUrl)}
alt={company.name}
title={company.name}
className={clsx(
styles.companyLogo,
styles[company.imageSize]
)}
/>
)}
</SwiperSlide>
))}
)}
</SwiperSlide>
))}
</Swiper>
</div>
);
Binary file not shown.

0 comments on commit 5b16252

Please sign in to comment.