Add clickable links to homepage! (#20)

* add hyperlinks

* page under dev
This commit is contained in:
amin saied 2021-01-19 17:32:35 -08:00 коммит произвёл GitHub
Родитель 52b867288c
Коммит 298171f9ec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 2 удалений

2
website/docs/templates/templates.md поставляемый
Просмотреть файл

@ -12,6 +12,8 @@ keywords:
- azure
---
_...This page is under development..._
## Base template
- https://github.com/azure/azureml-template

Просмотреть файл

@ -9,6 +9,7 @@ import styles from './styles.module.css';
const features = [
{
title: 'Cheat Sheet',
pageUrl: 'https://azure.github.io/azureml-web/docs/cheatsheet/',
imageUrl: 'img/undraw_docusaurus_mountain.svg',
description: (
<>
@ -19,6 +20,7 @@ const features = [
},
{
title: 'VS Code Integration',
pageUrl: 'https://azure.github.io/azureml-web/docs/vs-code-snippets/snippets',
imageUrl: 'img/undraw_docusaurus_tree.svg',
description: (
<>
@ -39,6 +41,7 @@ const features = [
// },
{
title: 'GitHub Templates',
pageUrl: 'https://azure.github.io/azureml-web/docs/templates/',
imageUrl: 'img/undraw_docusaurus_react.svg',
description: (
<>
@ -48,7 +51,7 @@ const features = [
},
];
function Feature({imageUrl, title, description}) {
function Feature({imageUrl, title, description, pageUrl}) {
const imgUrl = useBaseUrl(imageUrl);
return (
<div className={clsx('col col--4', styles.feature)}>
@ -57,7 +60,7 @@ function Feature({imageUrl, title, description}) {
<img className={styles.featureImage} src={imgUrl} alt={title} />
</div>
)}
<h3>{title}</h3>
<h3><a href={pageUrl}>{title}</a></h3>
<p>{description}</p>
</div>
);