From cb0a4d25a53fb73891a127ccfc8902d3d1838016 Mon Sep 17 00:00:00 2001
From: yoonhyejin <0327jane@gmail.com>
Date: Wed, 30 Oct 2024 12:51:56 +0900
Subject: [PATCH] fix: add learn more in homepages
---
.../src/pages/_components/QuickstartContent/index.js | 2 +-
.../pages/_components/QuickstartContent/quickstartContent.js | 4 ++++
.../QuickstartContent/quickstartcontent.module.scss | 5 +++++
3 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/docs-website/src/pages/_components/QuickstartContent/index.js b/docs-website/src/pages/_components/QuickstartContent/index.js
index 44410a3838e26..c92f9676a0b3c 100644
--- a/docs-website/src/pages/_components/QuickstartContent/index.js
+++ b/docs-website/src/pages/_components/QuickstartContent/index.js
@@ -87,7 +87,7 @@ const QuickstartContent = ({}) => {
{data.title}
diff --git a/docs-website/src/pages/_components/QuickstartContent/quickstartContent.js b/docs-website/src/pages/_components/QuickstartContent/quickstartContent.js
index 09a85b51194ac..23e23f1acfc99 100644
--- a/docs-website/src/pages/_components/QuickstartContent/quickstartContent.js
+++ b/docs-website/src/pages/_components/QuickstartContent/quickstartContent.js
@@ -6,6 +6,7 @@ const quickstartData = [
description:
"Enable everyone in your organization to effortlessly discover trustworthy data, with experiences tailored for each persona.Eliminate breaking changes with detailed cross-platform and column-level lineage. 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",
@@ -13,6 +14,7 @@ const quickstartData = [
description:
"Effortlessly detect data quality issues with automated checks and AI-driven anomaly detection. Notify your team where they work when issues arise and keep stakeholders in the loop with centralized incident tracking. 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",
@@ -20,6 +22,8 @@ const quickstartData = [
description:
"Ensure every data asset is accounted for and responsibility governed by defining and enforcing documentation standards. Automate your governance program to automatically classify assets as they evolve over time. Minimize redundant, manual work with GenAI documentation, AI-driven classification, smart propagation, and more.",
image: "/img/quickstart_governance.png",
+ link: "/solutions/governance",
+
},
];
diff --git a/docs-website/src/pages/_components/QuickstartContent/quickstartcontent.module.scss b/docs-website/src/pages/_components/QuickstartContent/quickstartcontent.module.scss
index 2e0bc41af278f..1c1f13cbca566 100644
--- a/docs-website/src/pages/_components/QuickstartContent/quickstartcontent.module.scss
+++ b/docs-website/src/pages/_components/QuickstartContent/quickstartcontent.module.scss
@@ -193,6 +193,11 @@
.learn_more {
color: #1890FF;
font-weight: 500;
+
+ &:hover {
+ text-decoration: none !important;
+ opacity: 0.8;
+ }
}
}
}