mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-17 13:04:04 +00:00
feat: CTA to live demos in cloud section and a few more case studies on home (#11488)
This commit is contained in:
parent
f8dd1a6d84
commit
9ffafb6a44
@ -79,6 +79,12 @@ module.exports = {
|
|||||||
srcDark: `img/${isSaas ? "acryl" : "datahub"}-logo-color-dark-horizontal.svg`,
|
srcDark: `img/${isSaas ? "acryl" : "datahub"}-logo-color-dark-horizontal.svg`,
|
||||||
},
|
},
|
||||||
items: [
|
items: [
|
||||||
|
{
|
||||||
|
to: "cloud/",
|
||||||
|
activeBasePath: "cloud",
|
||||||
|
label: "Cloud",
|
||||||
|
position: "right",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
to: "docs/",
|
to: "docs/",
|
||||||
activeBasePath: "docs",
|
activeBasePath: "docs",
|
||||||
|
|||||||
@ -26,9 +26,29 @@ const caseStudyData = [
|
|||||||
tag: "Technology",
|
tag: "Technology",
|
||||||
backgroundImage:
|
backgroundImage:
|
||||||
"https://www.notion.so/cdn-cgi/image/format=webp,width=1920/front-static/pages/product/super-duper/hero-illo.png",
|
"https://www.notion.so/cdn-cgi/image/format=webp,width=1920/front-static/pages/product/super-duper/hero-illo.png",
|
||||||
image: "https://boost.space/wp-content/uploads/2023/08/notion.png",
|
image: "https://datahubproject.io/img/logos/scrollingCompanies/notion.png",
|
||||||
link: "https://datahubproject.io/adoption-stories/#notion",
|
link: "https://datahubproject.io/adoption-stories/#notion",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Building on DataHub",
|
||||||
|
description:
|
||||||
|
"Why Pinterest chose DataHub to serve their needs.",
|
||||||
|
tag: "Technology",
|
||||||
|
backgroundImage:
|
||||||
|
"https://newsroom-archive.pinterest.com/static/images/pin32189_primary-image_hero_0db73.png",
|
||||||
|
image: "https://datahubproject.io/img/logos/companies/pinterest.png",
|
||||||
|
link: "https://www.youtube.com/watch?v=YoxTg8tQSwg",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Reliable Data Products",
|
||||||
|
description:
|
||||||
|
"How Miro leverages DataHub Cloud to deliver reliable data products.",
|
||||||
|
tag: "Technology",
|
||||||
|
backgroundImage:
|
||||||
|
"https://miro.com/blog/wp-content/uploads/2024/08/header-diagramming-s4-02.png",
|
||||||
|
image: "/img/logos/companies/miro.png",
|
||||||
|
link: "https://miro.com/careers/life-at-miro/tech/data-products-reliability-the-power-of-metadata/",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Working with Petabyte Scale Healthcare Data",
|
title: "Working with Petabyte Scale Healthcare Data",
|
||||||
description:
|
description:
|
||||||
@ -36,7 +56,7 @@ const caseStudyData = [
|
|||||||
tag: "Healthcare",
|
tag: "Healthcare",
|
||||||
backgroundImage:
|
backgroundImage:
|
||||||
"https://opensource.optum.com/static/images/mesh-overview-e26ea2aaa8d3dbb1f1771b50f4e31449.png",
|
"https://opensource.optum.com/static/images/mesh-overview-e26ea2aaa8d3dbb1f1771b50f4e31449.png",
|
||||||
image: "/img/logos/companies/optum.png",
|
image: "https://datahubproject.io/img/logos/companies/optum.png",
|
||||||
link: "https://datahubproject.io/adoption-stories/#optum",
|
link: "https://datahubproject.io/adoption-stories/#optum",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -34,6 +34,10 @@ function Home() {
|
|||||||
<Enterprise />
|
<Enterprise />
|
||||||
</Section>
|
</Section>
|
||||||
</div>
|
</div>
|
||||||
|
<div className={clsx(styles.weeklyDemoSection)}>
|
||||||
|
<div>Curious? Drop by and say hi!</div>
|
||||||
|
<Link to="https://www.acryldata.io/webinars/weekly-live-demo">Weekly Live Demos →</Link>
|
||||||
|
</div>
|
||||||
<div className={clsx("hero", styles.hero)}>
|
<div className={clsx("hero", styles.hero)}>
|
||||||
<div className="container" style={{ paddingTop: '12vh', paddingBottom: '12vh' }}>
|
<div className="container" style={{ paddingTop: '12vh', paddingBottom: '12vh' }}>
|
||||||
<div className="row row__padded">
|
<div className="row row__padded">
|
||||||
|
|||||||
@ -11,9 +11,30 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bgSection {
|
.bgSection {
|
||||||
background-color: #FAFAFA !important;
|
background-color: #F5F5F5 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.weeklyDemoSection {
|
||||||
|
width: 100%;
|
||||||
|
padding: 80px 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
background-color: #1890ff;
|
||||||
|
div {
|
||||||
|
color: white;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 400;
|
||||||
|
opacity: .9;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
cursor: pointer;
|
||||||
|
color: white;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.hero {
|
.hero {
|
||||||
.button {
|
.button {
|
||||||
|
|||||||
BIN
docs-website/static/img/logos/companies/miro.png
Normal file
BIN
docs-website/static/img/logos/companies/miro.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
Loading…
x
Reference in New Issue
Block a user