|
| 1 | +import React from "react"; |
| 2 | + |
| 3 | +import type { Props as Tweet } from "../components/Tweet"; |
| 4 | + |
| 5 | +export type TweetItem = Tweet & { |
| 6 | + showOnHomepage: boolean; |
| 7 | +}; |
| 8 | + |
| 9 | +const TWEETS: TweetItem[] = [ |
| 10 | + { |
| 11 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 12 | + handle: "TechLover99", |
| 13 | + name: "TechLover99", |
| 14 | + date: "May 28, 2024", |
| 15 | + content: ( |
| 16 | + <> |
| 17 | + Just completed my first JavaScript course on @CodeHarborHub! The content |
| 18 | + is top-notch and completely free. Highly recommend it! #LearnToCode |
| 19 | + #FreeEducation |
| 20 | + </> |
| 21 | + ), |
| 22 | + showOnHomepage: true, |
| 23 | + githubUsername: "TechLover99", |
| 24 | + }, |
| 25 | + { |
| 26 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 27 | + handle: "DevNewbie", |
| 28 | + name: "DevNewbie", |
| 29 | + date: "May 28, 2024", |
| 30 | + content: ( |
| 31 | + <> |
| 32 | + Can't believe how much I've learned from @CodeHarborHub in just a few |
| 33 | + weeks. Their hands-on projects are amazing! #WebDevelopment |
| 34 | + #CodeHarborHub |
| 35 | + </> |
| 36 | + ), |
| 37 | + showOnHomepage: true, |
| 38 | + githubUsername: "DevNewbie", |
| 39 | + }, |
| 40 | + { |
| 41 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 42 | + handle: "DataScienceGeek", |
| 43 | + name: "DataScienceGeek", |
| 44 | + date: "May 28, 2024", |
| 45 | + content: ( |
| 46 | + <> |
| 47 | + Loving the data science courses on @CodeHarborHub. It's all free and ad-free. Perfect for anyone looking to upskill. #DataScience #FreeLearning |
| 48 | + </> |
| 49 | + ), |
| 50 | + showOnHomepage: true, |
| 51 | + githubUsername: "DataScienceGeek", |
| 52 | + }, |
| 53 | + { |
| 54 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 55 | + handle: "CoderGirl", |
| 56 | + name: "CoderGirl", |
| 57 | + date: "May 28, 2024", |
| 58 | + content: ( |
| 59 | + <> |
| 60 | + Joined @CodeHarborHub last month and already feel more confident in my coding skills. Great community and resources! #TechCommunity #WomenInTech |
| 61 | + </> |
| 62 | + ), |
| 63 | + showOnHomepage: true, |
| 64 | + githubUsername: "CoderGirl", |
| 65 | + }, |
| 66 | + { |
| 67 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 68 | + handle: "FutureDev", |
| 69 | + name: "FutureDev", |
| 70 | + date: "May 28, 2024", |
| 71 | + content: ( |
| 72 | + <> |
| 73 | + Shoutout to @CodeHarborHub for providing such quality education for free! Their courses have been a game-changer for me. #TechSkills #CareerGrowth |
| 74 | + </> |
| 75 | + ), |
| 76 | + showOnHomepage: true, |
| 77 | + githubUsername: "FutureDev", |
| 78 | + }, |
| 79 | + { |
| 80 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 81 | + handle: "CodeMaster", |
| 82 | + name: "CodeMaster", |
| 83 | + date: "May 28, 2024", |
| 84 | + content: ( |
| 85 | + <> |
| 86 | + Just finished the Python course on @CodeHarborHub. The explanations were clear and easy to follow. Ideal for beginners! #Python #CodeHarborHub |
| 87 | + </> |
| 88 | + ), |
| 89 | + showOnHomepage: true, |
| 90 | + githubUsername: "CodeMaster", |
| 91 | + }, |
| 92 | + { |
| 93 | + url: "https://x.com/CodesWithAjay/status/1795486727077007869", |
| 94 | + handle: "AI_Enthusiast", |
| 95 | + name: "AI_Enthusiast", |
| 96 | + date: "May 28, 2024", |
| 97 | + content: ( |
| 98 | + <> |
| 99 | + If you're looking to learn AI and machine learning, @CodeHarborHub is the place to be. Comprehensive and free! #MachineLearning #AI #CodeHarborHub |
| 100 | + </> |
| 101 | + ), |
| 102 | + showOnHomepage: true, |
| 103 | + githubUsername: "AI_Enthusiast", |
| 104 | + }, |
| 105 | +]; |
| 106 | + |
| 107 | +export default TWEETS; |
0 commit comments