Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add learn more in the homepage #11752

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading