You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"name": "First Contributions - Make Your First Open Source Contribution",
4
+
"description": "Learn how to make your first open source contribution in just 5 minutes. Step-by-step guide for beginners with beginner-friendly projects and resources.",
Copy file name to clipboardExpand all lines: src/layouts/Layout.astro
+68-4Lines changed: 68 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,20 @@
2
2
exportinterfaceProps {
3
3
title?:string;
4
4
description?:string;
5
+
keywords?:string;
6
+
image?:string;
7
+
url?:string;
8
+
type?:string;
5
9
}
6
10
7
-
const { title ="First Contributions", description ="Make your first open source contribution in 5 minutes" } =Astro.props;
11
+
const {
12
+
title ="First Contributions - Make Your First Open Source Contribution in 5 Minutes",
13
+
description ="Learn how to make your first open source contribution in just 5 minutes. Step-by-step guide for beginners with beginner-friendly projects and resources.",
14
+
keywords ="open source, github, contribute to open source, beginner programmer, first contribution, git, pull request, coding, software development, programming, learn to code",
"description": "Learn how to make your first open source contribution in just 5 minutes. Step-by-step guide for beginners with beginner-friendly projects and resources.",
Copy file name to clipboardExpand all lines: src/pages/index.astro
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@ import Layout from '../layouts/Layout.astro';
3
3
importAppfrom'../components/App.astro';
4
4
---
5
5
6
-
<Layouttitle="First Contributions - Make your first open source contribution in 5 minutes">
6
+
<Layout
7
+
title="First Contributions - Make Your First Open Source Contribution in 5 Minutes"
8
+
description="Learn how to make your first open source contribution in just 5 minutes. Step-by-step guide for beginners with beginner-friendly projects and resources."
9
+
keywords="open source, github, contribute to open source, beginner programmer, first contribution, git, pull request, coding, software development, programming, learn to code"
0 commit comments