diff --git a/website/docs/templates/templates.md b/website/docs/templates/templates.md index 8e0698c..42757b6 100644 --- a/website/docs/templates/templates.md +++ b/website/docs/templates/templates.md @@ -12,6 +12,8 @@ keywords: - azure --- +_...This page is under development..._ + ## Base template - https://github.com/azure/azureml-template diff --git a/website/src/pages/index.js b/website/src/pages/index.js index 6c17e6b..8b2c8dd 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -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 (
@@ -57,7 +60,7 @@ function Feature({imageUrl, title, description}) { {title}
)} -

{title}

+

{title}

{description}

);