mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-04 22:52:54 +00:00
fix: remove saxo (#11127)
This commit is contained in:
parent
3a38415d6b
commit
5b162520f2
@ -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)
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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.
|
Before Width: | Height: | Size: 3.5 KiB |
Loading…
x
Reference in New Issue
Block a user