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
{{ message }}
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
* Created Headings components for h1 and h2
* Replaced h1 and h2 with newly created H1 and H2 components
* Removed isAuth props and just used h2 in login and register pages
* Added defaultStyles for H1 component except for margin properties
* Utilized forwardRef to add option to add more attributes to H1 and H2. Removed id props from H2 component.
* Added display name for lint formatting
Copy file name to clipboardExpand all lines: src/components/Faqs.jsx
+11-13Lines changed: 11 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
importImagefrom'next/image'
2
2
3
3
import{Container}from'@/components/Container'
4
+
import{H2}from'@/components/Headings'
4
5
5
6
constfaqs=[
6
7
[
@@ -11,7 +12,8 @@ const faqs = [
11
12
},
12
13
{
13
14
question: 'How do I join the EddieHub GitHub Organisation?',
14
-
answer: 'If you would like to join the EddieHub GitHub organisation, then please fill out this form so that you can get an automatic invite to the organisation. If you want the organisation to appear on your profile then make sure that you make it public (as by default it is marked as private).',
15
+
answer:
16
+
'If you would like to join the EddieHub GitHub organisation, then please fill out this form so that you can get an automatic invite to the organisation. If you want the organisation to appear on your profile then make sure that you make it public (as by default it is marked as private).',
15
17
},
16
18
{
17
19
question: 'Who is EddieHub for?',
@@ -23,11 +25,10 @@ const faqs = [
23
25
{
24
26
question: 'I am new to coding and / or Open Source, can I still join?',
25
27
answer:
26
-
'Yes! Starting out can sometimes feel lonely and overwhelming particularly with the amount of information out there. In EddieHub Discord you will find supportive channels such as #help and #first-timers. Also Eddie\'s YouTube channel is a good resource when starting out.',
28
+
"Yes! Starting out can sometimes feel lonely and overwhelming particularly with the amount of information out there. In EddieHub Discord you will find supportive channels such as #help and #first-timers. Also Eddie's YouTube channel is a good resource when starting out.",
27
29
},
28
30
{
29
-
question:
30
-
'Can I find a mentor in EddieHub?',
31
+
question: 'Can I find a mentor in EddieHub?',
31
32
answer:
32
33
'At EddieHub we believe that everyone is a mentor and can help others in the community. This community approach is beneficial for the mentee as they are exposed to various perspectives, and for the mentor they develop many of their communication and collaboration skills. Even if you are one month into your journey, there is someone who is one day in and who can benefit from your experience and insight.',
33
34
},
@@ -45,13 +46,13 @@ const faqs = [
45
46
'At EddieHub we are passionate about moving away from gender favouring, polarising, race related, religion inconsiderate or other unequal phrasing. Therefore if you use terms such as “Hi Guys”, then EddieBot responds with a notification highlighting that this is not inclusive language and will suggest alternatives.',
46
47
},
47
48
{
48
-
question: 'I just joined, why can\'t I post links on Discord?',
49
-
answer: 'You have recently joined the community and you have tried to share a link, but found that NightBot has deleted this message. We appreciate that the community is a place to share your work, which we encourage only for our regular community members (aka “Team Eddie”). To become a regular and get the role "Team Eddie", we highly suggest to get involved in the community conversation and add value by helping other community members.',
49
+
question: "I just joined, why can't I post links on Discord?",
50
+
answer:
51
+
'You have recently joined the community and you have tried to share a link, but found that NightBot has deleted this message. We appreciate that the community is a place to share your work, which we encourage only for our regular community members (aka “Team Eddie”). To become a regular and get the role "Team Eddie", we highly suggest to get involved in the community conversation and add value by helping other community members.',
50
52
},
51
53
{
52
54
question: 'I love Hubber! Can I use the EddieHub mascot and logo?',
53
-
answer:
54
-
'Check what you can and cannot do on our Branding page.',
55
+
answer: 'Check what you can and cannot do on our Branding page.',
Copy file name to clipboardExpand all lines: src/components/Testimonials.jsx
+22-14Lines changed: 22 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@ import Image from 'next/image'
2
2
importLinkfrom'next/link'
3
3
4
4
import{Container}from'@/components/Container'
5
+
import{H2}from'@/components/Headings'
5
6
6
7
consttestimonials=[
7
8
[
@@ -10,22 +11,23 @@ const testimonials = [
10
11
'Started contributing and building my GitHub profile and already got a job interview request based on my GitHub activity. So I really appreciate what you do here!',
11
12
author: {
12
13
name: 'emanuel_dev',
13
-
username: 'EmanuelGF'
14
+
username: 'EmanuelGF',
14
15
},
15
16
},
16
17
{
17
-
content: 'EddieHub is like a family to me! We get really warm welcomes here! We get all our issues solved by each others\' #help :) We get our 🟩 treats here! EddieHub is awesome. By Awesome I mean Awesome! It is a 10/5 rating!',
18
+
content:
19
+
"EddieHub is like a family to me! We get really warm welcomes here! We get all our issues solved by each others' #help :) We get our 🟩 treats here! EddieHub is awesome. By Awesome I mean Awesome! It is a 10/5 rating!",
18
20
author: {
19
21
name: 'Krish Gupta',
20
-
username: 'xkrishguptaa'
21
-
}
22
+
username: 'xkrishguptaa',
23
+
},
22
24
},
23
25
{
24
26
content:
25
27
"EddieHub is like a family to me! We get really warm welcomes here! We get all our issues solved by each others' #help :) We get our 🟩 treats here! EddieHub is awesome. By Awesome I mean Awesome! It is a 10/5 rating!",
26
28
author: {
27
29
name: 'Vincent Villafuerte',
28
-
username: 'vinzvinci'
30
+
username: 'vinzvinci',
29
31
},
30
32
},
31
33
],
@@ -35,15 +37,15 @@ const testimonials = [
35
37
"It's everything anyone could ever ask for in a community. Wholesome, Encouraging, Open Source and everything nice! Best thing happened in 2020. I'll be always thankful to this community and keep contributing here. It's beyond rating of 5 stars. 3000/5 ⭐",
36
38
author: {
37
39
name: 'Karuna Tata',
38
-
username: 'starlightknown'
40
+
username: 'starlightknown',
39
41
},
40
42
},
41
43
{
42
44
content:
43
45
'EddieHub is the best growing 🚀 Open-Source community. Here, you can help each other by raising issues, solving doubts on the help channel, show your work (projects), make good connections and so many things.I would recommend all beginners to join the most respectful, collaborative and loving Open-Source community.Thanks @eddiejaoude, we support you!',
44
46
author: {
45
47
name: 'akhileshthite',
46
-
username: 'akhileshthite'
48
+
username: 'akhileshthite',
47
49
},
48
50
},
49
51
],
@@ -53,15 +55,15 @@ const testimonials = [
53
55
'Eddiehub has helped me to understand the importance of Open Source and how easy it is to collaborate with developers from around the world to work on different projects and learn from each other in an amazing community.',
54
56
author: {
55
57
name: 'Evavic44',
56
-
username: 'Evavic44'
58
+
username: 'Evavic44',
57
59
},
58
60
},
59
61
{
60
62
content:
61
63
"This is just an awesome community. This is the first community I have seen which puts collaboration first than the code. Collaborative people make a collaborative community and EddieHub is a perfect example of it 😄. I can't rate this community on the scale because priceless things can't be quantified ❤️",
62
64
author: {
63
65
name: 'Kaiwalya Koparkar',
64
-
username: 'kaiwalyakoparkar'
66
+
username: 'kaiwalyakoparkar',
65
67
},
66
68
},
67
69
],
@@ -84,9 +86,7 @@ export function Testimonials() {
0 commit comments