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}

- {/* Learn More → */} + Learn More →

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; + } } } }