diff --git a/docs-website/adoptionStoriesIndexes.json b/docs-website/adoptionStoriesIndexes.json index 15cb770697c1c..79ddf81e4ed6f 100644 --- a/docs-website/adoptionStoriesIndexes.json +++ b/docs-website/adoptionStoriesIndexes.json @@ -54,6 +54,12 @@ "category": "B2B & B2C", "description": "Pinterest adopted a DataHub project to enhance metadata management for its big data query platform, facilitating better data navigation and understanding." }, + { + "name": "Snap, Inc.", + "slug": "snap", + "imageUrl": "/img/logos/companies/snap.png", + "imageSize": "small" + }, { "name": "Airtel", "slug": "airtel", diff --git a/docs-website/src/pages/_components/CaseStudy/caseStudyContent.js b/docs-website/src/pages/_components/CaseStudy/caseStudyContent.js index 0346acc37ed4a..3c840e4fab6eb 100644 --- a/docs-website/src/pages/_components/CaseStudy/caseStudyContent.js +++ b/docs-website/src/pages/_components/CaseStudy/caseStudyContent.js @@ -9,16 +9,16 @@ const caseStudyData = [ image: "https://datahubproject.io/img/logos/companies/netflix.png", link: "https://datahubproject.io/adoption-stories/#netflix", }, - // { - // title: "Scaling Data Governance", - // description: - // "How VISA Uses DataHub to Scale Data Governance.", - // tag: "Finance", - // backgroundImage: - // "https://miro.medium.com/v2/resize:fit:2000/format:webp/1*mtC4j8J-jumJKWg8RuR6xQ@2x.png", - // image: "https://datahubproject.io/img/logos/companies/visa.png", - // link: "https://datahubproject.io/adoption-stories/#visa", - // }, + { + title: "Scaling Data Governance", + description: + "How VISA Uses DataHub to Scale Data Governance.", + tag: "Finance", + backgroundImage: + "https://miro.medium.com/v2/resize:fit:2000/format:webp/1*mtC4j8J-jumJKWg8RuR6xQ@2x.png", + image: "/img/logos/companies/visa_text.png", + link: "https://datahubproject.io/adoption-stories/#visa", + }, { title: "Ensuring Data Reliability", description: diff --git a/docs-website/src/pages/_components/Logos/index.js b/docs-website/src/pages/_components/Logos/index.js index a4ac46649ccf4..6855e669cbdb5 100644 --- a/docs-website/src/pages/_components/Logos/index.js +++ b/docs-website/src/pages/_components/Logos/index.js @@ -171,7 +171,7 @@ export const CompanyLogos = () => ( className={clsx("mySwiper", styles.companyWrapper)} > {companies - .filter((company) => company.imageUrl) // Filter companies with imageUrl + .filter((company) => company.imageUrl && company.link) // Filter companies with imageUrl and link .map((company, idx) => ( {company.link ? ( diff --git a/docs-website/src/pages/index.js b/docs-website/src/pages/index.js index d74e80f381097..1c36b81a2da95 100644 --- a/docs-website/src/pages/index.js +++ b/docs-website/src/pages/index.js @@ -21,7 +21,7 @@ import CloseButton from "@ant-design/icons/CloseCircleFilled"; const companyIndexes = require("../../adoptionStoriesIndexes.json"); const companies = companyIndexes.companies; -const keyCompanySlugs = ["netflix", "pinterest", "airtel", "notion", "optum"]; +const keyCompanySlugs = ["netflix", "pinterest", "notion", "snap", "optum"]; //, "airtel"]; const keyCompanies = keyCompanySlugs .map((slug) => companies.find((co) => co.slug === slug)) .filter((isDefined) => isDefined); @@ -63,7 +63,13 @@ function Home() {
{keyCompanies.map((company) => ( - + {company.name} ))} + + + More +
{/*