-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10c6181
commit dd8c592
Showing
114 changed files
with
3,624 additions
and
3,786 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from "react"; | ||
import clsx from "clsx"; | ||
import useBaseUrl from "@docusaurus/useBaseUrl"; | ||
import Link from "@docusaurus/Link"; | ||
|
||
import styles from "../styles/section.module.scss"; | ||
|
||
const AnnouncementSection = () => ( | ||
<section className={clsx(styles.section, styles.announcementSection)}> | ||
<div className="container"> | ||
<img src={useBaseUrl("/static/img/acryl-logo-white-mark.svg")} /> | ||
<h2>Managed DataHub</h2> | ||
<p> | ||
Acryl Data delivers an easy to consume DataHub platform for the | ||
enterprise | ||
</p> | ||
<Link | ||
to={useBaseUrl("/docs/saas")} | ||
target="_blank" | ||
class="button button--primary button--lg" | ||
> | ||
Sign up for Managed DataHub → | ||
</Link> | ||
</div> | ||
</section> | ||
); | ||
|
||
export default AnnouncementSection; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import React from "react"; | ||
import clsx from "clsx"; | ||
import Link from "@docusaurus/Link"; | ||
import useBaseUrl from "@docusaurus/useBaseUrl"; | ||
|
||
const featuresContent = [ | ||
{ | ||
title: "Open Source", | ||
imageUrl: "/static/img/icons/open.svg", | ||
description: ( | ||
<> | ||
DataHub was originally{" "} | ||
<Link to={"https://engineering.linkedin.com/blog/2019/data-hub"}> | ||
built at LinkedIn | ||
</Link>{" "} | ||
and subsequently{" "} | ||
<Link to={"https://github.com/linkedin/datahub"}>open-sourced</Link>{" "} | ||
under the Apache 2.0 License. It now has a thriving community with over | ||
a hundred contributors, and is widely used at many companies. | ||
</> | ||
), | ||
}, | ||
{ | ||
title: "Forward Looking Architecture", | ||
imageUrl: "/static/img/icons/architecture.svg", | ||
description: ( | ||
<> | ||
DataHub follows a{" "} | ||
<Link | ||
to={ | ||
"https://engineering.linkedin.com/blog/2020/datahub-popular-metadata-architectures-explained" | ||
} | ||
> | ||
push-based architecture | ||
</Link> | ||
, which means it's built for continuously changing metadata. The modular | ||
design lets it scale with data growth at any organization, from a single | ||
database under your desk to multiple data centers spanning the globe. | ||
</> | ||
), | ||
}, | ||
{ | ||
title: "Massive Ecosystem", | ||
imageUrl: "/static/img/icons/ecosystem.svg", | ||
description: ( | ||
<> | ||
DataHub has pre-built integrations with your favorite systems: Kafka, | ||
Airflow, MySQL, SQL Server, Postgres, LDAP, Snowflake, Hive, BigQuery, | ||
and <Link to={"docs/metadata-ingestion"}>many others</Link>. The | ||
community is continuously adding more integrations, so this list keeps | ||
getting longer and longer. | ||
</> | ||
), | ||
}, | ||
]; | ||
|
||
const Feature = ({ imageUrl, title, description }) => { | ||
return ( | ||
<div className={clsx("col col--4")}> | ||
<div> | ||
<img | ||
src={useBaseUrl(imageUrl)} | ||
alt={title} | ||
className="invert-on-dark" | ||
/> | ||
</div> | ||
<h3>{title}</h3> | ||
<p>{description}</p> | ||
</div> | ||
); | ||
}; | ||
|
||
const Features = ({}) => | ||
featuresContent && featuresContent.length > 0 ? ( | ||
<div style={{ padding: "2vh 0" }}> | ||
<div className="container"> | ||
<div className="row"> | ||
{featuresContent.map((props, idx) => ( | ||
<Feature key={idx} {...props} /> | ||
))} | ||
</div> | ||
</div> | ||
</div> | ||
) : null; | ||
|
||
export default Features; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React from "react"; | ||
import clsx from "clsx"; | ||
import Link from "@docusaurus/Link"; | ||
import useBaseUrl from "@docusaurus/useBaseUrl"; | ||
|
||
import styles from "../styles/hero.module.scss"; | ||
|
||
import RoundedImage from "./RoundedImage"; | ||
|
||
const Hero = ({}) => ( | ||
<header className={clsx("hero", styles.hero)}> | ||
<div className="container"> | ||
<div className="row row--centered"> | ||
<div className="col col--5"> | ||
<div className="hero__content"> | ||
<div> | ||
<h1 className={clsx("hero__title")}> | ||
A Metadata Platform for the Modern Data Stack | ||
</h1> | ||
<p className={clsx("hero__subtitle")}> | ||
Data ecosystems are diverse — too diverse. DataHub's | ||
extensible metadata platform enables data discovery, data | ||
observability and federated governance that helps you tame this | ||
complexity. | ||
</p> | ||
<Link | ||
className="button button--primary button--lg" | ||
to={useBaseUrl("docs/")} | ||
> | ||
Get Started → | ||
</Link> | ||
<Link | ||
className="button button--secondary button--outline button--lg" | ||
to="https://slack.datahubproject.io" | ||
> | ||
Join our Slack | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={clsx("col col--6 col--offset-1")}> | ||
<RoundedImage | ||
img={require("/img/screenshots/entity.png")} | ||
alt="DataHub Entity Screenshot" | ||
/> | ||
<div></div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
); | ||
|
||
export default Hero; |
Oops, something went wrong.