parent
18e4804a51
commit
fd939f198a
5 changed files with 63 additions and 23 deletions
@ -1,9 +1,24 @@ |
||||
--- |
||||
import "../styles/prism.css"; |
||||
import '../styles/prism.css'; |
||||
import DownloadPopup from './DownloadPopup.astro'; |
||||
import ShareIcons from './ShareIcons.astro'; |
||||
import SubscribePopup from './SubscribePopup.astro'; |
||||
|
||||
export interface Props { |
||||
roadmapId: string; |
||||
description: string; |
||||
} |
||||
|
||||
const { roadmapId, description } = Astro.props; |
||||
--- |
||||
|
||||
<div class="bg-gray-50 py-4 sm:py-10"> |
||||
<div class="container prose prose-headings:mt-4 prose-headings:mb-2 prose-p:mb-0.5"> |
||||
<div class='bg-gray-50 py-4 sm:py-10'> |
||||
<div |
||||
class='container prose prose-headings:mt-4 prose-headings:mb-2 prose-p:mb-0.5 relative prose-code:text-white' |
||||
> |
||||
<DownloadPopup /> |
||||
<SubscribePopup /> |
||||
|
||||
<slot /> |
||||
</div> |
||||
</div> |
||||
|
@ -0,0 +1,10 @@ |
||||
# Git |
||||
|
||||
[Git](https://git-scm.com/) is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [Learn Git on the command line](https://github.com/jlord/git-it-electron) |
||||
- [Version Control System Introduction](https://www.youtube.com/watch?v=zbKdDsNNOhg) |
||||
- [Git & GitHub Crash Course For Beginners](https://www.youtube.com/watch?v=SWYqp7iY_Tc) |
||||
- [Learn Git in 20 Minutes](https://youtu.be/Y9XZQO1n_7c?t=21) |
Loading…
Reference in new issue