Skip to content

Commit

Permalink
fix: add learn more in the homepage (#11752)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin authored Oct 30, 2024
1 parent d87d250 commit 3f5602b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const QuickstartContent = ({}) => {
<div className="quickstart__text__head">{data.title}</div>
<div className="quickstart__text__desc">
<p dangerouslySetInnerHTML={{ __html: data.description }} />
{/* <span className="learn_more">Learn More →</span> */}
<a className="learn_more" href={data.link}>Learn More →</a>
</div>
</div>
<div className="quickstart__img">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,24 @@ const quickstartData = [
description:
"Enable everyone in your organization to effortlessly discover trustworthy data, with experiences tailored for each persona.<span></span>Eliminate breaking changes with detailed cross-platform and column-level lineage. <span></span> Build confidence in your data with a comprehensive view of business, operational, and technical context, all in one place.",
image: "/img/quickstart_discovery.png",
link: "/solutions/discovery",
},
{
heading: "Observability",
title: "Build trust in your data",
description:
"Effortlessly detect data quality issues with automated checks and AI-driven anomaly detection. <span></span> Notify your team where they work when issues arise and keep stakeholders in the loop with centralized incident tracking. <span></span> Spend minutes, not days, resolving issues with detailed lineage, documentation, and ownership information all in one place.",
image: "/img/quickstart_observability.png",
link: "/solutions/observability",
},
{
heading: "Governance",
title: "Minimize compliance risk, effortlessly",
description:
"Ensure every data asset is accounted for and responsibility governed by defining and enforcing documentation standards. <span></span> Automate your governance program to automatically classify assets as they evolve over time. <span></span> Minimize redundant, manual work with GenAI documentation, AI-driven classification, smart propagation, and more.",
image: "/img/quickstart_governance.png",
link: "/solutions/governance",

},
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@
.learn_more {
color: #1890FF;
font-weight: 500;

&:hover {
text-decoration: none !important;
opacity: 0.8;
}
}
}
}
Expand Down

0 comments on commit 3f5602b

Please sign in to comment.