Clarify external links on startpage

This commit is contained in:
Jacob Karlsson 2024-06-13 11:58:05 +02:00
parent 58eabdf801
commit 97b440cf32
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import React from 'react';
import clsx from 'clsx';
import IconExternalLink from '@theme/Icon/ExternalLink';
import styles from './styles.module.css';
const FeatureList = [
@ -37,7 +38,7 @@ function Feature({title, description, link}) {
<div className={clsx('col col--4')}>
<div className="text--center padding-horiz--md">
<a href={link} target='_blank' style={{color: 'var(--ifm-font-color-base)'}}>
<h3>{title}</h3>
<h3>{title}<IconExternalLink/></h3>
<p>{description}</p>
</a>
</div>