-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathtweets.tsx
131 lines (127 loc) · 3.48 KB
/
tweets.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import React from "react";
import type { Props as Tweet } from "../components/Tweet";
export type TweetItem = Tweet & {
showOnHomepage: boolean;
};
const TWEETS: TweetItem[] = [
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
handle: "TechLover99",
name: "TechLover99",
date: "May 28, 2024",
content: (
<>
Just completed my first JavaScript course on @CodeHarborHub! The content
is top-notch and completely free. Highly recommend it! #LearnToCode
#FreeEducation
</>
),
showOnHomepage: true,
githubUsername: "TechLover99",
},
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
handle: "DevNewbie",
name: "DevNewbie",
date: "May 28, 2024",
content: (
<>
Can't believe how much I've learned from @CodeHarborHub in
just a few weeks. Their hands-on projects are amazing! #WebDevelopment
#CodeHarborHub
</>
),
showOnHomepage: true,
githubUsername: "DevNewbie",
},
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
handle: "DataScienceGeek",
name: "DataScienceGeek",
date: "May 28, 2024",
content: (
<>
Loving the data science courses on @CodeHarborHub. It's all free
and ad-free. Perfect for anyone looking to upskill. #DataScience
#FreeLearning
</>
),
showOnHomepage: true,
githubUsername: "DataScienceGeek",
},
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
handle: "CoderGirl",
name: "CoderGirl",
date: "May 28, 2024",
content: (
<>
Joined @CodeHarborHub last month and already feel more confident in my
coding skills. Great community and resources! #TechCommunity
#WomenInTech
</>
),
showOnHomepage: true,
githubUsername: "CoderGirl",
},
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
handle: "FutureDev",
name: "FutureDev",
date: "May 28, 2024",
content: (
<>
Shoutout to @CodeHarborHub for providing such quality education for
free! Their courses have been a game-changer for me. #TechSkills
#CareerGrowth
</>
),
showOnHomepage: true,
githubUsername: "FutureDev",
},
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
handle: "CodeMaster",
name: "CodeMaster",
date: "May 28, 2024",
content: (
<>
Just finished the Python course on @CodeHarborHub. The explanations were
clear and easy to follow. Ideal for beginners! #Python #CodeHarborHub
</>
),
showOnHomepage: true,
githubUsername: "CodeMaster",
},
{
url: "/",
handle: "...",
name: "Samar Jeet Yadav",
date: "Jun 21, 2024",
content: (
<>
I want to promote this type of amazing learning source. Because this is
totally open resource anyone can easily go on website and learn a lot
different types of course form zero to advance level...
</>
),
showOnHomepage: true,
githubUsername: "",
},
{
url: "/",
handle: "AI_Enthusiast",
name: "AI_Enthusiast",
date: "May 28, 2024",
content: (
<>
If you're looking to learn AI and machine learning, @CodeHarborHub
is the place to be. Comprehensive and free! #MachineLearning #AI
#CodeHarborHub
</>
),
showOnHomepage: true,
githubUsername: "AI_Enthusiast",
},
];
export default TWEETS;