Skip to content

Commit

Permalink
docs: fix learning center color scheme & typo (#11043)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin authored Jul 31, 2024
1 parent a734d69 commit 32247da
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion docs-website/src/learn/_components/LearnListPage/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ function BlogListPageContent(props) {
<strong>For: </strong>
{audiences.map((audience) => (
<button
className={`button button--secondary ${activeFilters.includes(audience) && "button--active"}`}
className={clsx(styles.button, "button button--secondary", { [styles.buttonActive]: activeFilters.includes(audience) })}
onClick={() => handleFilterToggle(audience)}
key={audience}
>
{audience}
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@
align-items: center;
gap: 10px;
flex-wrap: wrap;
}

.buttonActive {
background-color: var(--ifm-color-primary);
border: 1px solid var(--ifm-color-primary);
color: #ffffff;
}
}
9 changes: 5 additions & 4 deletions docs-website/src/learn/business-metric.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@ DataHub Cloud offers comprehensive features designed to tackle the challenges of
</p>

- **[Approval Flows](https://datahubproject.io/docs/managed-datahub/approval-workflows):** Structured workflows for approving changes to metric definitions, maintaining accuracy and reliability.
-

![Untitled](https://prod-files-secure.s3.us-west-2.amazonaws.com/f818df0d-1067-44ab-99e1-8cf45d930c01/33ebd070-32a1-4875-b220-c31373f5eedf/Untitled.png)
<p align="center">
<img width="80%" src="https://raw.githubusercontent.com/datahub-project/static-assets/main/imgs/blogs/data-freshness/lineage.png"/>
<br />
<i style={{color:"grey"}}>Lineage Tracking</i>
</p>

- **[Lineage Tracking](https://datahubproject.io/docs/generated/lineage/lineage-feature-guide):** Tools to track the origin and transformations of metrics, ensuring they align with standardized definitions.
-
![Screenshot 2024-07-10 at 12.07.28 PM.png](https://prod-files-secure.s3.us-west-2.amazonaws.com/f818df0d-1067-44ab-99e1-8cf45d930c01/39503957-ad64-4d2d-a5b2-b140abfc1f6c/Screenshot_2024-07-10_at_12.07.28_PM.png)

By implementing these solutions, you can ensure that your business metrics are consistently defined and accurately used across all teams, supporting reliable analysis and decision-making.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const customerCardContent = [
3. Community-driven project which continually evolves with industry trends and best practices
</>
),
to: "https://www.acryldata.io/blog/data-contracts-in-datahub-combining-verifiability-with-holistic-data-management?utm_source=datahub&utm_medium=referral&utm_content=blog",
to: "https://youtu.be/wsCFnElN_Wo?si=i-bNAQAsbHJq5O9-",
},
{
customer: "Airtel",
Expand All @@ -75,7 +75,7 @@ const customerCardContent = [
DataHub to take their data mesh implementation to the next level.
</>
),
to: "https://youtu.be/wsCFnElN_Wo?si=i-bNAQAsbHJq5O9-",
to: "https://www.youtube.com/watch?v=yr24mM91BN4",
},
];

Expand Down

0 comments on commit 32247da

Please sign in to comment.