Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added an online courses section to the getting started page #46

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/data/courses.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
+ Here are some awesome introductory courses to get started in AI:
+ [AI For Everyone](https://www.coursera.org/learn/ai-for-everyone)
+ [Hugging Face's Courses](https://huggingface.co/learn)
+ [Machine Learning Specialization](https://www.coursera.org/specializations/machine-learning-introduction?utm_medium=sem&utm_source=gg&utm_campaign=B2C_NAMER_machine-learning-introduction_stanford_FTCOF_specializations_country-US-country-CA&campaignid=685340575&adgroupid=146515176429&device=c&keyword=&matchtype=&network=g&devicemodel=&adposition=&creativeid=650958766230&hide_mobile_promo&gclid=Cj0KCQiA1rSsBhDHARIsANB4EJaUFceX2bdjmHTOGEqzGD2q8LmlvluNnYt25CTVx-2g1ia81KAbYeMaAsibEALw_wcB)
7 changes: 7 additions & 0 deletions src/pages/getting-started.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import Layout from '@layouts/Default.astro'
import * as gettingStarted from '@data/getting-started.md'
import * as datasets from '@data/datasets.md'
import * as courses from '@data/courses.md'
import { courses, lectures, etc as misc } from '@data/resources.json'
---

Expand All @@ -13,6 +14,12 @@ import { courses, lectures, etc as misc } from '@data/resources.json'
<div class="content" set:html={gettingStarted.compiledContent()}>
</div>
</section>
<section class="section">
<h1 class="title">Online Courses</h1>
<h4 class="subtitle">These are some introductory AI courses to get started</h4>
<div class="content" set:html={courses.compiledContent()}>
</div>
</section>
<section class="section">
<h1 class="title">Datasets</h1>
<h4 class="subtitle">These are some free datasets to use</h4>
Expand Down
Loading