forked from fork-commit-merge/fork-commit-merge-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiscussions.tsx
74 lines (72 loc) · 2.93 KB
/
Discussions.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import Link from "next/link";
const Discussions = () => {
return (
<div className="flex justify-center items-center bg-primary py-10 px-10">
<div className="text-center max-w-2xl">
<h1 className="text-3xl font-bold mb-6">
GitHub Discussions: An Overview
</h1>
<p className="mb-4">
GitHub Discussions is a space within a GitHub repository where the
community can have conversations, ask questions, and share updates.
It's a platform to engage with the project maintainers and other
contributors.
</p>
<hr className="my-6" />
<h2 className="text-2xl font-semibold mb-4">
How to Access Discussions
</h2>
<p className="mb-4">
You can find the Discussions tab near the top of the GitHub repository
page, often alongside "Issues" and "Pull
Requests." Click on it to enter the Discussions section.
</p>
<hr className="my-6" />
<h2 className="text-2xl font-semibold mb-4">
Starting a New Discussion
</h2>
<p className="mb-4">
To start a new discussion, click on the "New discussion"
button. Choose the appropriate category and add a descriptive title
and body content for your discussion.
</p>
<hr className="my-6" />
<h2 className="text-2xl font-semibold mb-4">How to Participate</h2>
<p className="mb-4">
Participation can range from asking questions, answering queries, to
providing updates or feedback. You can react to discussions and
comments to show agreement or appreciation.
</p>
<hr className="my-6" />
<h2 className="text-2xl font-semibold mb-4">
Guidelines for Effective Participation
</h2>
<p className="mb-4">
Always follow the repository's code of conduct and guidelines.
Stay on topic, be respectful, and help create a welcoming environment
for all.
</p>
<hr className="my-6" />
<p>
GitHub Discussions is a powerful tool for community building. Make the
most of it by engaging respectfully and constructively.
</p>
<div className="mt-10 mb-3">
<Link
target="_blank"
rel="noopener noreferrer"
href="https://github.com/nikohoffren/fork-commit-merge/discussions"
className="text-sm bg-slate-900 hover:bg-slate-800 my-8 pt-4 px-8 pb-5 rounded-md shadow-lg transition-all duration-300 ease-in-out transform hover:scale-105 font-semibold tracking-wider font-primary"
style={{
wordWrap: "break-word",
display: "inline-block",
}}
>
TAKE A PART IN FORK, COMMIT, MERGE DISCUSSIONS
</Link>
</div>
</div>
</div>
);
};
export default Discussions;