├── .gitignore
├── assets
├── bg.png
├── class.png
├── demo-card-thumbnail.png
├── demo-user.png
├── fb.png
├── instagram.png
├── logo.png
├── nav-logo.png
├── playground.png
├── star.png
├── swimming.png
├── twitter.png
└── user.png
├── demo-data
├── categories.json
└── news.json
├── design
├── auth-layout-login.png
├── auth-layout-register.png
├── home-layout.png
└── news-details-layout.png
└── readme.md
/.gitignore:
--------------------------------------------------------------------------------
1 | *.fig
--------------------------------------------------------------------------------
/assets/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/bg.png
--------------------------------------------------------------------------------
/assets/class.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/class.png
--------------------------------------------------------------------------------
/assets/demo-card-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/demo-card-thumbnail.png
--------------------------------------------------------------------------------
/assets/demo-user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/demo-user.png
--------------------------------------------------------------------------------
/assets/fb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/fb.png
--------------------------------------------------------------------------------
/assets/instagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/instagram.png
--------------------------------------------------------------------------------
/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/logo.png
--------------------------------------------------------------------------------
/assets/nav-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/nav-logo.png
--------------------------------------------------------------------------------
/assets/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/playground.png
--------------------------------------------------------------------------------
/assets/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/star.png
--------------------------------------------------------------------------------
/assets/swimming.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/swimming.png
--------------------------------------------------------------------------------
/assets/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/twitter.png
--------------------------------------------------------------------------------
/assets/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/assets/user.png
--------------------------------------------------------------------------------
/demo-data/categories.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": 0,
4 | "name": "All News"
5 | },
6 | {
7 | "id": 1,
8 | "name": "Breaking News"
9 | },
10 | {
11 | "id": 2,
12 | "name": "Business"
13 | },
14 | {
15 | "id": 3,
16 | "name": "Technology"
17 | },
18 | {
19 | "id": 4,
20 | "name": "Health"
21 | },
22 | {
23 | "id": 5,
24 | "name": "Sports"
25 | },
26 | {
27 | "id": 6,
28 | "name": "Entertainment"
29 | },
30 | {
31 | "id": 7,
32 | "name": "Science"
33 | },
34 | {
35 | "id": 8,
36 | "name": "Politics"
37 | },
38 | {
39 | "id": 9,
40 | "name": "Education"
41 | },
42 | {
43 | "id": 10,
44 | "name": "Lifestyle"
45 | }
46 | ]
47 |
--------------------------------------------------------------------------------
/demo-data/news.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": "bcdefa0123456789bcdefa01",
4 | "category_id": 2,
5 | "title": "Bangladesh's Export Earnings Show Strong Growth in Q1 2025",
6 | "rating": {
7 | "number": 4,
8 | "badge": "trending"
9 | },
10 | "total_view": 6789,
11 | "author": {
12 | "name": "Shirin Akter",
13 | "published_date": "2025-04-22T17:00:00.000Z",
14 | "img": "https://randomuser.me/api/portraits/women/29.jpg"
15 | },
16 | "thumbnail_url": "https://apparelresources.com/wp-content/uploads/2024/11/Bangladeshs-RMG-exports-decline-by-2.8-per-cent-in-FY-25-Q1-.jpg",
17 | "image_url": "https://apparelresources.com/wp-content/uploads/2024/11/Bangladeshs-RMG-exports-decline-by-2.8-per-cent-in-FY-25-Q1-.jpg",
18 | "details": "Bangladesh's export sector has demonstrated robust performance in the first quarter of 2025, registering significant growth compared to the same period last year. Key sectors such as readymade garments and leather goods have contributed substantially to this positive trend. The increase in export earnings is attributed to rising global demand and the government's supportive policies aimed at enhancing trade competitiveness. Analysts predict continued growth in the coming quarters, provided that global economic conditions remain favorable and domestic industries maintain their momentum. This positive export performance is expected to have a favorable impact on the country's foreign exchange reserves and overall economic stability.",
19 | "tags": ["exports", "economy", "business", "growth", "trade"],
20 | "others": {
21 | "is_today_pick": true,
22 | "is_trending": true
23 | },
24 | "production": true
25 | },
26 | {
27 | "id": "23456789abcdef0123456789",
28 | "category_id": 2,
29 | "title": "Central Bank Announces New Monetary Policy to Control Inflation",
30 | "rating": {
31 | "number": 3,
32 | "badge": "trending"
33 | },
34 | "total_view": 4567,
35 | "author": {
36 | "name": "Aminul Islam",
37 | "published_date": "2025-04-22T16:45:00.000Z",
38 | "img": "https://randomuser.me/api/portraits/men/55.jpg"
39 | },
40 | "thumbnail_url": "https://www.tbsnews.net/sites/default/files/styles/infograph/public/images/2024/12/06/taka_mumitm-1977_0.jpg",
41 | "image_url": "https://www.tbsnews.net/sites/default/files/styles/infograph/public/images/2024/12/06/taka_mumitm-1977_0.jpg",
42 | "details": "The central bank of Bangladesh has unveiled its latest monetary policy statement, outlining measures intended to curb the recent rise in inflation. The new policy includes adjustments to key interest rates and reserve requirements for commercial banks. The central bank aims to stabilize prices and manage inflationary pressures effectively through these interventions. Economists are closely analyzing the potential impact of these measures on various sectors of the economy and on the overall cost of living. The effectiveness of the new monetary policy in achieving its objectives will be closely monitored in the coming months, as the nation grapples with the challenges of rising inflation.",
43 | "tags": [
44 | "central bank",
45 | "monetary policy",
46 | "inflation",
47 | "economy",
48 | "finance"
49 | ],
50 | "others": {
51 | "is_today_pick": false,
52 | "is_trending": false
53 | },
54 | "production": true
55 | },
56 | {
57 | "id": "cdefab0123456789cdefab01",
58 | "category_id": 2,
59 | "title": "Foreign Investment in Bangladesh Reaches Record High in Fiscal Year 2024-25",
60 | "rating": {
61 | "number": 5,
62 | "badge": "excellent"
63 | },
64 | "total_view": 8901,
65 | "author": {
66 | "name": "Laila Rahman",
67 | "published_date": "2025-04-22T16:30:00.000Z",
68 | "img": "https://randomuser.me/api/portraits/women/15.jpg"
69 | },
70 | "thumbnail_url": "https://www.tbsnews.net/sites/default/files/styles/big_3/public/images/2021/07/05/fdi.jpg",
71 | "image_url": "https://www.tbsnews.net/sites/default/files/styles/big_3/public/images/2021/07/05/fdi.jpg",
72 | "details": "Bangladesh has attracted an unprecedented level of foreign direct investment (FDI) in the fiscal year 2024-25, marking a significant milestone for the country's economic development. Increased investment inflows have been observed across various sectors, including manufacturing, energy, and telecommunications. This surge in FDI is attributed to the government's investor-friendly policies, improved infrastructure, and the country's growing market potential. Analysts believe that this record-high foreign investment will not only boost economic growth but also create numerous employment opportunities. The government is committed to further enhancing the investment climate to sustain this positive momentum and attract even greater foreign capital in the future.",
73 | "tags": ["foreign investment", "economy", "business", "FDI", "investment"],
74 | "others": {
75 | "is_today_pick": true,
76 | "is_trending": true
77 | },
78 | "production": true
79 | },
80 | {
81 | "id": "defabc0123456789defabc01",
82 | "category_id": 2,
83 | "title": "Local Businesses Adapt to Rising Raw Material Costs",
84 | "rating": {
85 | "number": 3,
86 | "badge": "trending"
87 | },
88 | "total_view": 3456,
89 | "author": {
90 | "name": "Omar Faruk",
91 | "published_date": "2025-04-22T16:15:00.000Z",
92 | "img": "https://randomuser.me/api/portraits/men/92.jpg"
93 | },
94 | "thumbnail_url": "https://media.licdn.com/dms/image/v2/D4E12AQHDZfFbG3RuAw/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1685979901445?e=2147483647&v=beta&t=SWkw-wWTwSJav3iPJuSl4qSZgt8mC1YOcI-SCWEuA5c",
95 | "image_url": "https://media.licdn.com/dms/image/v2/D4E12AQHDZfFbG3RuAw/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1685979901445?e=2147483647&v=beta&t=SWkw-wWTwSJav3iPJuSl4qSZgt8mC1YOcI-SCWEuA5c",
96 | "details": "Local businesses in Bangladesh are facing increasing pressure due to the rising costs of raw materials in both domestic and international markets. Many enterprises are actively seeking strategies to adapt to these challenging economic conditions, including exploring alternative sourcing options, implementing cost-cutting measures, and adjusting pricing strategies. The impact of these rising costs is being felt across various industries, from manufacturing to consumer goods. Business analysts are closely monitoring how these challenges will affect the overall competitiveness and sustainability of local enterprises in the long run. Support measures from the government and industry associations may be crucial in helping businesses navigate these economic headwinds.",
97 | "tags": ["business", "economy", "raw materials", "costs", "challenges"],
98 | "others": {
99 | "is_today_pick": false,
100 | "is_trending": false
101 | },
102 | "production": true
103 | },
104 | {
105 | "id": "efabcd0123456789efabcd01",
106 | "category_id": 2,
107 | "title": "Government Announces New Incentives for Small and Medium Enterprises (SMEs)",
108 | "rating": {
109 | "number": 4,
110 | "badge": "trending"
111 | },
112 | "total_view": 5678,
113 | "author": {
114 | "name": "Taslima Nasrin",
115 | "published_date": "2025-04-22T16:00:00.000Z",
116 | "img": "https://randomuser.me/api/portraits/women/67.jpg"
117 | },
118 | "thumbnail_url": "https://www.tbsnews.net/sites/default/files/styles/big_2/public/images/2020/08/10/sme_small_and_medium_enterprises.jpg",
119 | "image_url": "https://www.tbsnews.net/sites/default/files/styles/big_2/public/images/2020/08/10/sme_small_and_medium_enterprises.jpg",
120 | "details": "The government of Bangladesh has introduced a new set of incentives aimed at bolstering the growth and development of Small and Medium Enterprises (SMEs) across the nation. These incentives include easier access to financing, tax benefits, and support for technological upgrades. The initiative recognizes the crucial role of SMEs in job creation and economic diversification. Government officials believe that these measures will empower SMEs to expand their operations, enhance their competitiveness, and contribute more significantly to the country's overall economic progress. Workshops and awareness campaigns are planned to ensure that SMEs are well-informed about these new opportunities and can effectively avail themselves of the available support.",
121 | "tags": ["SME", "business", "economy", "incentives", "government support"],
122 | "others": {
123 | "is_today_pick": true,
124 | "is_trending": true
125 | },
126 | "production": true
127 | },
128 | {
129 | "id": "fabcde0123456789fabcde01",
130 | "category_id": 2,
131 | "title": "E-commerce Sector in Bangladesh Sees Rapid Expansion Amidst Digital Adoption",
132 | "rating": {
133 | "number": 4,
134 | "badge": "trending"
135 | },
136 | "total_view": 7890,
137 | "author": {
138 | "name": "Sayed Hasan",
139 | "published_date": "2025-04-22T17:15:00.000Z",
140 | "img": "https://randomuser.me/api/portraits/men/41.jpg"
141 | },
142 | "thumbnail_url": "https://allnextver.com/wp-content/uploads/2024/09/Top-E-commerce-Sites-in-Bangladesh-1024x538.jpg",
143 | "image_url": "https://allnextver.com/wp-content/uploads/2024/09/Top-E-commerce-Sites-in-Bangladesh-1024x538.jpg",
144 | "details": "The e-commerce sector in Bangladesh is experiencing a period of significant and rapid expansion, fueled by increasing internet penetration and growing digital adoption among consumers. Online marketplaces and digital payment systems are becoming increasingly popular, transforming the retail landscape. This growth is creating new opportunities for businesses of all sizes to reach a wider customer base. Industry analysts predict that this upward trend will continue, driven by factors such as convenience, competitive pricing, and the expanding availability of online services. The government is also focusing on developing a supportive regulatory framework to foster the sustainable growth of the e-commerce ecosystem and protect consumer interests in this evolving market.",
145 | "tags": ["e-commerce", "business", "technology", "digital", "retail"],
146 | "others": {
147 | "is_today_pick": true,
148 | "is_trending": true
149 | },
150 | "production": true
151 | },
152 | {
153 | "id": "bcdefa9876543210bcdefa98",
154 | "category_id": 2,
155 | "title": "Stock Market Witnesses Increased Volatility Following Global Economic Uncertainty",
156 | "rating": {
157 | "number": 3,
158 | "badge": "trending"
159 | },
160 | "total_view": 5432,
161 | "author": {
162 | "name": "Maliha Chowdhury",
163 | "published_date": "2025-04-22T17:00:00.000Z",
164 | "img": "https://randomuser.me/api/portraits/women/73.jpg"
165 | },
166 | "thumbnail_url": "https://static.euronews.com/articles/stories/09/19/02/94/1200x675_cmsv2_a908d85c-e7b7-517f-a169-06b97cd60892-9190294.jpg",
167 | "image_url": "https://static.euronews.com/articles/stories/09/19/02/94/1200x675_cmsv2_a908d85c-e7b7-517f-a169-06b97cd60892-9190294.jpg",
168 | "details": "The stock market in Bangladesh has experienced a notable increase in volatility in recent trading sessions, primarily influenced by prevailing uncertainties in the global economic outlook. Fluctuations in international markets and concerns over global growth prospects have contributed to investor caution. Market analysts are advising investors to exercise prudence and carefully assess potential risks associated with the current market conditions. Regulatory authorities are closely monitoring the situation to ensure market stability and prevent any unwarranted speculation. The performance of major global economies will likely continue to have a significant impact on the local stock market sentiment in the near term.",
169 | "tags": ["stock market", "economy", "business", "finance", "volatility"],
170 | "others": {
171 | "is_today_pick": false,
172 | "is_trending": false
173 | },
174 | "production": true
175 | },
176 | {
177 | "id": "cdefab9876543210cdefab98",
178 | "category_id": 2,
179 | "title": "Renewable Energy Sector Attracts Growing Investor Interest in Bangladesh",
180 | "rating": {
181 | "number": 4,
182 | "badge": "trending"
183 | },
184 | "total_view": 6543,
185 | "author": {
186 | "name": "Ahsan Habib",
187 | "published_date": "2025-04-22T16:45:00.000Z",
188 | "img": "https://randomuser.me/api/portraits/men/19.jpg"
189 | },
190 | "thumbnail_url": "https://tfe-bd.sgp1.cdn.digitaloceanspaces.com/posts/86033/renewable-energy.jpg",
191 | "image_url": "https://tfe-bd.sgp1.cdn.digitaloceanspaces.com/posts/86033/renewable-energy.jpg",
192 | "details": "The renewable energy sector in Bangladesh is increasingly becoming an attractive destination for both domestic and international investors. With a growing emphasis on sustainable development and reducing carbon emissions, the government is actively promoting investments in solar, wind, and other renewable energy sources. Several new projects are underway, and the regulatory framework is being streamlined to facilitate further growth in this sector. Analysts anticipate significant expansion in the renewable energy capacity of Bangladesh in the coming years, contributing to energy security and environmental sustainability. This growing investor interest underscores the immense potential of the renewable energy market in the country.",
193 | "tags": [
194 | "renewable energy",
195 | "business",
196 | "environment",
197 | "investment",
198 | "sustainability"
199 | ],
200 | "others": {
201 | "is_today_pick": true,
202 | "is_trending": true
203 | },
204 | "production": true
205 | },
206 | {
207 | "id": "defabc9876543210defabc98",
208 | "category_id": 2,
209 | "title": "Bangladesh Aims to Diversify its Export Basket Beyond Garments",
210 | "rating": {
211 | "number": 3,
212 | "badge": "trending"
213 | },
214 | "total_view": 4321,
215 | "author": {
216 | "name": "Farida Yasmin",
217 | "published_date": "2025-04-22T16:30:00.000Z",
218 | "img": "https://randomuser.me/api/portraits/women/51.jpg"
219 | },
220 | "thumbnail_url": "https://lightcastlepartners.com/wp-content/uploads/2024/05/Ready-made-garments-exports-earning-and-its-contribution-to-economic-growth-in-Bangladesh-ezgif.com-jpg-to-webp-converter.webp",
221 | "image_url": "https://lightcastlepartners.com/wp-content/uploads/2024/05/Ready-made-garments-exports-earning-and-its-contribution-to-economic-growth-in-Bangladesh-ezgif.com-jpg-to-webp-converter.webp",
222 | "details": "The government of Bangladesh is actively pursuing strategies to diversify its export basket and reduce the country's heavy reliance on the readymade garments (RMG) sector. Efforts are being made to promote the export of other potential goods and services, including agricultural products, pharmaceuticals, and information technology. This diversification drive aims to enhance economic resilience and create new avenues for growth in the global market. Various policy initiatives and incentives are being considered to support the development and promotion of these non-traditional export sectors. The success of this diversification strategy is considered crucial for the long-term sustainable economic development of Bangladesh.",
223 | "tags": ["exports", "economy", "business", "diversification", "trade"],
224 | "others": {
225 | "is_today_pick": false,
226 | "is_trending": false
227 | },
228 | "production": true
229 | },
230 | {
231 | "id": "efabcd9876543210efabcd98",
232 | "category_id": 2,
233 | "title": "Concerns Raised Over Impact of Global Supply Chain Disruptions on Local Industries",
234 | "rating": {
235 | "number": 3,
236 | "badge": "trending"
237 | },
238 | "total_view": 5876,
239 | "author": {
240 | "name": "Zahidul Haque",
241 | "published_date": "2025-04-22T16:15:00.000Z",
242 | "img": "https://randomuser.me/api/portraits/men/27.jpg"
243 | },
244 | "thumbnail_url": "https://cdn.cfr.org/sites/default/files/styles/full_width_xl/public/image/2021/11/Containers.webp",
245 | "image_url": "https://cdn.cfr.org/sites/default/files/styles/full_width_xl/public/image/2021/11/Containers.webp",
246 | "details": "Local industries in Bangladesh are facing growing concerns regarding the potential impact of ongoing disruptions in the global supply chain. These disruptions, stemming from various international factors, are affecting the availability and cost of essential raw materials and components. Businesses are grappling with issues such as longer lead times and increased transportation expenses. Industry experts are analyzing the potential long-term consequences of these disruptions on the competitiveness and profitability of domestic manufacturers. Measures to enhance supply chain resilience and explore alternative sourcing options are being discussed among businesses and policymakers to mitigate the adverse effects of these global challenges on the local economy.",
247 | "tags": ["supply chain", "business", "economy", "global", "disruption"],
248 | "others": {
249 | "is_today_pick": false,
250 | "is_trending": false
251 | },
252 | "production": true
253 | },
254 | {
255 | "id": "abcdef0123456789abcdef0123",
256 | "category_id": 3,
257 | "title": "Programming Hero Announces New Advanced Web Development Bootcamp",
258 | "rating": {
259 | "number": 4,
260 | "badge": "trending"
261 | },
262 | "total_view": 6789,
263 | "author": {
264 | "name": "Jhankar Mahbub",
265 | "published_date": "2025-04-22T18:00:00.000Z",
266 | "img": "https://randomuser.me/api/portraits/men/85.jpg"
267 | },
268 | "thumbnail_url": "https://scontent.fdac24-2.fna.fbcdn.net/v/t39.30808-6/491880841_696014102971562_3005933071358310688_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=127cfc&_nc_eui2=AeGzmTL5B-AGde0K2UI00OsuOljhdnHK8lw6WOF2ccryXILDqNMfj6OhAqWfWsrqUTrouEiIx5ohs37Q_ixWDsY6&_nc_ohc=c53WZIYARg0Q7kNvwEL4ybp&_nc_oc=Adl6a0DdvTZm7m_D26xQQQ_7vkdUsNSvpqRP-_Nw7KH-W-Dak5G0D1-3fu2KKuoRP18&_nc_zt=23&_nc_ht=scontent.fdac24-2.fna&_nc_gid=-m-kjdn9Mog6LmpUsE43ag&oh=00_AfFHTyQjUzleZLKBIyU81cDPTp69evtM74LwQPpTMzqDig&oe=680D94B3",
269 | "image_url": "https://scontent.fdac24-2.fna.fbcdn.net/v/t39.30808-6/491880841_696014102971562_3005933071358310688_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=127cfc&_nc_eui2=AeGzmTL5B-AGde0K2UI00OsuOljhdnHK8lw6WOF2ccryXILDqNMfj6OhAqWfWsrqUTrouEiIx5ohs37Q_ixWDsY6&_nc_ohc=c53WZIYARg0Q7kNvwEL4ybp&_nc_oc=Adl6a0DdvTZm7m_D26xQQQ_7vkdUsNSvpqRP-_Nw7KH-W-Dak5G0D1-3fu2KKuoRP18&_nc_zt=23&_nc_ht=scontent.fdac24-2.fna&_nc_gid=-m-kjdn9Mog6LmpUsE43ag&oh=00_AfFHTyQjUzleZLKBIyU81cDPTp69evtM74LwQPpTMzqDig&oe=680D94B3",
270 | "details": "Programming Hero, a popular online coding education platform based in Bangladesh, has announced the launch of its new advanced web development bootcamp. The intensive program is designed for individuals looking to enhance their skills in modern web technologies, including React, Node.js, and advanced JavaScript frameworks. The bootcamp will feature experienced instructors, hands-on projects, and career guidance to prepare graduates for the competitive job market. With a focus on practical application and industry best practices, Programming Hero aims to empower aspiring developers in Bangladesh to excel in their careers. Enrollment for the new bootcamp is now open, with limited seats available to ensure personalized attention for all participants. The course is expected to commence in early May 2025.",
271 | "tags": [
272 | "programming hero",
273 | "web development",
274 | "bootcamp",
275 | "education",
276 | "technology"
277 | ],
278 | "others": {
279 | "is_today_pick": true,
280 | "is_trending": true
281 | },
282 | "production": true
283 | },
284 | {
285 | "id": "bcdef0123456789abcdef01234",
286 | "category_id": 3,
287 | "title": "BIDA and Tech Mahindra Partner to Attract Foreign Investment in Tech Sector",
288 | "rating": {
289 | "number": 4,
290 | "badge": "trending"
291 | },
292 | "total_view": 5678,
293 | "author": {
294 | "name": "Chowdhury Ashik Mahmud Bin Harun",
295 | "published_date": "2025-04-22T17:45:00.000Z",
296 | "img": "https://randomuser.me/api/portraits/men/48.jpg"
297 | },
298 | "thumbnail_url": "https://investbangladesh.co/wp-content/uploads/2025/01/The-financial-analysis-paints-a-grim-picture-of-the-companys-performance-revealing-severe-weaknesses-across-liquidity-solvency-and-profitability-metrics.-Liquidity-ratios-are-alarmingly-low-s.jpg",
299 | "image_url": "https://investbangladesh.co/wp-content/uploads/2025/01/The-financial-analysis-paints-a-grim-picture-of-the-companys-performance-revealing-severe-weaknesses-across-liquidity-solvency-and-profitability-metrics.-Liquidity-ratios-are-alarmingly-low-s.jpg",
300 | "details": "The Bangladesh Investment Development Authority (BIDA) has announced a strategic partnership with Tech Mahindra, a global technology consulting and digital solutions company, to jointly promote Bangladesh as a prime destination for foreign investment in the technology sector. The collaboration will involve joint marketing efforts, investment roadshows, and the facilitation of business linkages between international tech companies and the burgeoning local tech ecosystem. BIDA aims to leverage Tech Mahindra's global network and expertise to attract more FDI in areas such as software development, IT services, and high-tech manufacturing. This partnership underscores the government's commitment to diversifying the economy and positioning Bangladesh as a hub for technological innovation and investment in South Asia. Several joint events are planned over the next quarter to showcase the opportunities available in Bangladesh's rapidly growing tech industry.",
301 | "tags": [
302 | "BIDA",
303 | "Tech Mahindra",
304 | "foreign investment",
305 | "technology",
306 | "partnership"
307 | ],
308 | "others": {
309 | "is_today_pick": true,
310 | "is_trending": true
311 | },
312 | "production": true
313 | },
314 | {
315 | "id": "cdef0123456789abcdef012345",
316 | "category_id": 3,
317 | "title": "Elon Musk's Starlink Receives Operational License in Bangladesh, Trials Begin",
318 | "rating": {
319 | "number": 5,
320 | "badge": "excellent"
321 | },
322 | "total_view": 12345,
323 | "author": {
324 | "name": "Elon Musk",
325 | "published_date": "2025-04-22T17:30:00.000Z",
326 | "img": "https://randomuser.me/api/portraits/men/96.jpg"
327 | },
328 | "thumbnail_url": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202504/67f4b0a4bddf6-starlink-gets-licence-to-operate-in-bangladesh-photo-unsplash-081406853-16x9.jpg?size=948:533",
329 | "image_url": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202504/67f4b0a4bddf6-starlink-gets-licence-to-operate-in-bangladesh-photo-unsplash-081406853-16x9.jpg?size=948:533",
330 | "details": "Elon Musk's satellite internet service, Starlink, has officially received the operational license from the Bangladesh Telecommunication Regulatory Commission (BTRC) to begin services in the country. Following the approval from the Bangladesh Investment Development Authority (BIDA) last month, this marks a significant step towards providing high-speed internet access, particularly in remote and underserved areas of Bangladesh. Initial trials of the Starlink service are scheduled to commence this week, focusing on assessing the network performance and coverage across different regions. The entry of Starlink is expected to revolutionize internet connectivity, bridging the digital divide and enabling advancements in education, healthcare, and business sectors. Government officials and Starlink representatives are optimistic about the transformative impact of this technology on Bangladesh's digital infrastructure.",
331 | "tags": ["Elon Musk", "Starlink", "internet", "satellite", "Bangladesh"],
332 | "others": {
333 | "is_today_pick": true,
334 | "is_trending": true
335 | },
336 | "production": true
337 | },
338 | {
339 | "id": "def0123456789abcdef0123456",
340 | "category_id": 3,
341 | "title": "Bangladesh Aims for Self-Sufficiency in Semiconductor Manufacturing by 2035",
342 | "rating": {
343 | "number": 3,
344 | "badge": "trending"
345 | },
346 | "total_view": 4567,
347 | "author": {
348 | "name": "Zunaid Ahmed Palak",
349 | "published_date": "2025-04-22T17:15:00.000Z",
350 | "img": "https://randomuser.me/api/portraits/men/52.jpg"
351 | },
352 | "thumbnail_url": "https://industryinsiderbd.com/wp-content/uploads/2025/01/Semiconductor.jpg",
353 | "image_url": "https://industryinsiderbd.com/wp-content/uploads/2025/01/Semiconductor.jpg",
354 | "details": "The government of Bangladesh has announced an ambitious long-term goal to achieve self-sufficiency in semiconductor manufacturing by the year 2035. This initiative aims to reduce the country's reliance on foreign imports for critical electronic components and foster the growth of a high-tech manufacturing sector. Plans are underway to attract foreign investment and develop local expertise in semiconductor design and fabrication. This strategic move is envisioned to boost the electronics industry, create skilled jobs, and enhance Bangladesh's position in the global technology value chain. Feasibility studies and policy frameworks are currently being developed to outline the steps required to achieve this ambitious target over the next decade. Collaboration with international partners and technology transfer will be crucial aspects of this endeavor.",
355 | "tags": [
356 | "semiconductor",
357 | "manufacturing",
358 | "technology",
359 | "government",
360 | "economy"
361 | ],
362 | "others": {
363 | "is_today_pick": false,
364 | "is_trending": false
365 | },
366 | "production": true
367 | },
368 | {
369 | "id": "ef0123456789abcdef01234567",
370 | "category_id": 3,
371 | "title": "Bangladesh Launches National AI Strategy Focusing on Ethical Development and Application",
372 | "rating": {
373 | "number": 4,
374 | "badge": "trending"
375 | },
376 | "total_view": 7890,
377 | "author": {
378 | "name": "Sonia Bashir Kabir",
379 | "published_date": "2025-04-22T17:00:00.000Z",
380 | "img": "https://randomuser.me/api/portraits/women/61.jpg"
381 | },
382 | "thumbnail_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS76E9rl0Eekmf17ZaWawgsaN6okFZMlKMxQ&s",
383 | "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS76E9rl0Eekmf17ZaWawgsaN6okFZMlKMxQ&s",
384 | "details": "Bangladesh has unveiled its first National Artificial Intelligence (AI) Strategy, outlining a comprehensive roadmap for the ethical development and application of AI technologies across various sectors. The strategy emphasizes the importance of fostering innovation while addressing potential societal and ethical implications. Key focus areas include developing AI skills and talent, promoting research and development, creating a supportive regulatory environment, and encouraging the adoption of AI in sectors such as healthcare, education, agriculture, and governance. The strategy also highlights the need for ensuring data privacy, security, and fairness in AI systems. The government aims to collaborate with academia, industry, and international partners to effectively implement this national AI strategy and harness the transformative potential of artificial intelligence for the country's socio-economic progress.",
385 | "tags": [
386 | "AI",
387 | "artificial intelligence",
388 | "strategy",
389 | "technology",
390 | "ethics"
391 | ],
392 | "others": {
393 | "is_today_pick": true,
394 | "is_trending": true
395 | },
396 | "production": true
397 | },
398 | {
399 | "id": "01abcdef2345678901abcdef23",
400 | "category_id": 3,
401 | "title": "Bangladesh Making Strides in 5G Network Rollout Across Major Cities",
402 | "rating": {
403 | "number": 4,
404 | "badge": "trending"
405 | },
406 | "total_view": 9123,
407 | "author": {
408 | "name": "Raisa Kabir",
409 | "published_date": "2025-04-22T17:30:00.000Z",
410 | "img": "https://randomuser.me/api/portraits/women/45.jpg"
411 | },
412 | "thumbnail_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/media/2024/02/29/5G-9038023ef4a49a760d52281eeae3d76a.jpg?jadewits_media_id=15965",
413 | "image_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/media/2024/02/29/5G-9038023ef4a49a760d52281eeae3d76a.jpg?jadewits_media_id=15965",
414 | "details": "Bangladesh is steadily advancing in the deployment of its 5G network infrastructure, with significant progress reported in major metropolitan areas. Telecommunication operators are actively expanding their 5G coverage, promising ultra-fast internet speeds and enhanced connectivity for both consumers and businesses. This technological advancement is expected to drive innovation across various sectors, including smart cities, healthcare, and industrial automation. The government has emphasized its commitment to fostering a robust digital ecosystem, and the 5G rollout is a key component of this vision. Ongoing trials and infrastructure upgrades are paving the way for wider accessibility and the realization of the full potential of 5G technology in the country.",
415 | "tags": ["5G", "technology", "network", "telecom", "Bangladesh"],
416 | "others": {
417 | "is_today_pick": true,
418 | "is_trending": true
419 | },
420 | "production": true
421 | },
422 | {
423 | "id": "23abcdef0145678923abcdef01",
424 | "category_id": 3,
425 | "title": "Local Tech Startups Secure Funding for Innovative AI and IoT Solutions",
426 | "rating": {
427 | "number": 5,
428 | "badge": "excellent"
429 | },
430 | "total_view": 7890,
431 | "author": {
432 | "name": "Imtiaz Ahmed",
433 | "published_date": "2025-04-22T17:15:00.000Z",
434 | "img": "https://randomuser.me/api/portraits/men/62.jpg"
435 | },
436 | "thumbnail_url": "https://d3lkc3n5th01x7.cloudfront.net/wp-content/uploads/2023/09/13053157/Artificial-Intelligence-Applications-Development-Company-Thumbnail.png",
437 | "image_url": "https://d3lkc3n5th01x7.cloudfront.net/wp-content/uploads/2023/09/13053157/Artificial-Intelligence-Applications-Development-Company-Thumbnail.png",
438 | "details": "Several promising tech startups in Bangladesh have successfully secured significant funding rounds, primarily focused on developing cutting-edge solutions in the fields of Artificial Intelligence (AI) and the Internet of Things (IoT). These investments highlight the growing confidence in the local tech ecosystem and the potential for innovation-driven growth. The funded projects span a range of applications, from smart agriculture and healthcare to industrial automation and intelligent transportation systems. This influx of capital is expected to accelerate the development and deployment of these advanced technologies, contributing to the digital transformation of various sectors in Bangladesh and positioning the country as a rising player in the global tech landscape.",
439 | "tags": ["tech startups", "AI", "IoT", "funding", "innovation"],
440 | "others": {
441 | "is_today_pick": true,
442 | "is_trending": true
443 | },
444 | "production": true
445 | },
446 | {
447 | "id": "45abcdef0123678945abcdef01",
448 | "category_id": 3,
449 | "title": "Concerns Raised Over Data Privacy and Cybersecurity Amidst Increasing Digitalization",
450 | "rating": {
451 | "number": 3,
452 | "badge": "trending"
453 | },
454 | "total_view": 6543,
455 | "author": {
456 | "name": "Saima Rahman",
457 | "published_date": "2025-04-22T17:00:00.000Z",
458 | "img": "https://randomuser.me/api/portraits/women/38.jpg"
459 | },
460 | "thumbnail_url": "https://cdn1.expresscomputer.in/wp-content/uploads/2023/01/04170521/EC_Data_Security_Lock_750.jpg",
461 | "image_url": "https://cdn1.expresscomputer.in/wp-content/uploads/2023/01/04170521/EC_Data_Security_Lock_750.jpg",
462 | "details": "As Bangladesh embraces rapid digitalization across various sectors, growing concerns are being voiced regarding data privacy and cybersecurity. Experts are emphasizing the need for robust legal frameworks and stringent security measures to protect sensitive personal and organizational data. The increasing reliance on digital platforms and online transactions necessitates heightened awareness and proactive measures to mitigate the risks of data breaches and cyberattacks. Discussions are underway among policymakers, industry stakeholders, and cybersecurity professionals to formulate effective strategies for safeguarding digital assets and ensuring a secure online environment for all users. Strengthening cybersecurity infrastructure and promoting digital literacy are considered crucial steps in addressing these evolving challenges.",
463 | "tags": [
464 | "data privacy",
465 | "cybersecurity",
466 | "digitalization",
467 | "technology",
468 | "security"
469 | ],
470 | "others": {
471 | "is_today_pick": false,
472 | "is_trending": false
473 | },
474 | "production": true
475 | },
476 | {
477 | "id": "67abcdef0123458967abcdef01",
478 | "category_id": 3,
479 | "title": "Government Initiatives Promote Digital Transformation in Agriculture Sector",
480 | "rating": {
481 | "number": 4,
482 | "badge": "trending"
483 | },
484 | "total_view": 5432,
485 | "author": {
486 | "name": "Nazmul Haque",
487 | "published_date": "2025-04-22T16:45:00.000Z",
488 | "img": "https://randomuser.me/api/portraits/men/79.jpg"
489 | },
490 | "thumbnail_url": "https://eng.ruralvoice.in/uploads/images/2024/09/image_750x_66d864decc1a8.jpg",
491 | "image_url": "https://eng.ruralvoice.in/uploads/images/2024/09/image_750x_66d864decc1a8.jpg",
492 | "details": "The government of Bangladesh is actively promoting the digital transformation of the agriculture sector through various initiatives and programs. These efforts aim to enhance efficiency, productivity, and sustainability in farming practices by leveraging modern technologies such as mobile applications for crop management, remote sensing for monitoring field conditions, and data analytics for informed decision-making. The adoption of precision agriculture techniques and the use of digital platforms for market linkages are also being encouraged. These initiatives are expected to empower farmers with better access to information, resources, and markets, ultimately contributing to increased agricultural output and improved livelihoods for rural communities across the country.",
493 | "tags": [
494 | "agritech",
495 | "technology",
496 | "agriculture",
497 | "digital transformation",
498 | "innovation"
499 | ],
500 | "others": {
501 | "is_today_pick": true,
502 | "is_trending": true
503 | },
504 | "production": true
505 | },
506 | {
507 | "id": "89abcdef0123456789abcdef01",
508 | "category_id": 3,
509 | "title": "Bangladeshi Universities Launch New Programs in Emerging Technologies",
510 | "rating": {
511 | "number": 4,
512 | "badge": "trending"
513 | },
514 | "total_view": 4321,
515 | "author": {
516 | "name": "Farah Ahmed",
517 | "published_date": "2025-04-22T16:30:00.000Z",
518 | "img": "https://randomuser.me/api/portraits/women/22.jpg"
519 | },
520 | "thumbnail_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/dten/2022/07/27/uiu-resized.jpeg",
521 | "image_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/dten/2022/07/27/uiu-resized.jpeg",
522 | "details": "Several universities across Bangladesh have recently introduced new academic programs focused on emerging technologies such as artificial intelligence, machine learning, data science, and cybersecurity. These initiatives reflect a growing recognition of the importance of equipping the next generation with the skills required to thrive in the rapidly evolving digital landscape. The new programs aim to bridge the gap between academic learning and industry demands, fostering a skilled workforce capable of driving innovation and contributing to the country's technological advancement. Collaborations with tech companies and research institutions are also being emphasized to provide students with practical experience and exposure to real-world challenges in these cutting-edge fields.",
523 | "tags": ["education", "technology", "AI", "data science", "cybersecurity"],
524 | "others": {
525 | "is_today_pick": false,
526 | "is_trending": true
527 | },
528 | "production": true
529 | },
530 | {
531 | "id": "f7abcd0123456789f7abcd0123",
532 | "category_id": 4,
533 | "title": "Breakthrough in Affordable Dialysis Treatment Developed by Local Researchers",
534 | "rating": {
535 | "number": 5,
536 | "badge": "excellent"
537 | },
538 | "total_view": 10234,
539 | "author": {
540 | "name": "Dr. Anika Rahman",
541 | "published_date": "2025-04-22T19:00:00.000Z",
542 | "img": "https://randomuser.me/api/portraits/women/77.jpg"
543 | },
544 | "thumbnail_url": "https://i0.wp.com/nephroplus.com/wp-content/uploads/2022/08/safety-and-comfort.png?fit=604%2C471&ssl=1",
545 | "image_url": "https://i0.wp.com/nephroplus.com/wp-content/uploads/2022/08/safety-and-comfort.png?fit=604%2C471&ssl=1",
546 | "details": "Researchers at a prominent medical institute in Bangladesh have announced a significant breakthrough in developing a more affordable and accessible dialysis treatment for patients suffering from kidney failure. The newly developed method utilizes locally sourced materials and a simplified process, potentially reducing the cost of dialysis significantly. Initial trials have shown promising results, offering hope to a large number of patients who currently struggle to afford the life-saving treatment. The research team is now working on scaling up production and conducting further clinical trials to ensure the widespread availability and efficacy of this innovative approach. This development has the potential to transform kidney care in Bangladesh and other low-resource settings.",
547 | "tags": ["dialysis", "health", "kidney failure", "treatment", "research"],
548 | "others": {
549 | "is_today_pick": true,
550 | "is_trending": true
551 | },
552 | "production": true
553 | },
554 | {
555 | "id": "abf7cd0123456789abf7cd01234",
556 | "category_id": 4,
557 | "title": "Public Health Experts Warn Against Rising Antibiotic Resistance",
558 | "rating": {
559 | "number": 3,
560 | "badge": "trending"
561 | },
562 | "total_view": 7890,
563 | "author": {
564 | "name": "Professor Salimuzzaman",
565 | "published_date": "2025-04-22T18:45:00.000Z",
566 | "img": "https://randomuser.me/api/portraits/men/25.jpg"
567 | },
568 | "thumbnail_url": "https://www.modern-momsa.co.za/wp-content/uploads/2024/11/image001.jpg",
569 | "image_url": "https://www.modern-momsa.co.za/wp-content/uploads/2024/11/image001.jpg",
570 | "details": "Public health experts in Bangladesh are raising concerns about the increasing prevalence of antibiotic resistance, which poses a significant threat to the effective treatment of common infections. The overuse and misuse of antibiotics in both human and animal healthcare are identified as key contributing factors to this growing problem. Experts are advocating for stricter regulations on antibiotic prescriptions, public awareness campaigns on the responsible use of antibiotics, and enhanced surveillance of antibiotic-resistant bacteria. Failure to address this issue could lead to a situation where many bacterial infections become untreatable, increasing morbidity and mortality rates. Collaborative efforts involving healthcare professionals, policymakers, and the public are crucial to combat the rise of antibiotic resistance.",
571 | "tags": [
572 | "antibiotic resistance",
573 | "health",
574 | "public health",
575 | "bacteria",
576 | "drugs"
577 | ],
578 | "others": {
579 | "is_today_pick": false,
580 | "is_trending": false
581 | },
582 | "production": true
583 | },
584 | {
585 | "id": "baf7dc0123456789baf7dc012345",
586 | "category_id": 4,
587 | "title": "Initiatives Launched to Improve Maternal and Child Health in Rural Areas",
588 | "rating": {
589 | "number": 4,
590 | "badge": "trending"
591 | },
592 | "total_view": 9123,
593 | "author": {
594 | "name": "Dr. Laila Karim",
595 | "published_date": "2025-04-22T18:30:00.000Z",
596 | "img": "https://randomuser.me/api/portraits/women/93.jpg"
597 | },
598 | "thumbnail_url": "https://bangladesh.unfpa.org/sites/default/files/styles/original/public/news/popy_2-3.webp?itok=9SpECxV7",
599 | "image_url": "https://bangladesh.unfpa.org/sites/default/files/styles/original/public/news/popy_2-3.webp?itok=9SpECxV7",
600 | "details": "Several new initiatives have been launched across Bangladesh with the aim of improving maternal and child health outcomes in rural and underserved areas. These programs focus on enhancing access to quality antenatal care, safe delivery practices, postnatal support, and child immunization services. Community health workers are being trained and equipped to provide essential healthcare services and health education at the grassroots level. Telemedicine platforms are also being utilized to connect rural patients with specialist doctors in urban centers. These concerted efforts by the government and non-governmental organizations aim to reduce maternal and infant mortality rates and ensure better health and well-being for women and children in remote regions of the country.",
601 | "tags": [
602 | "maternal health",
603 | "child health",
604 | "rural health",
605 | "healthcare",
606 | "Bangladesh"
607 | ],
608 | "others": {
609 | "is_today_pick": true,
610 | "is_trending": true
611 | },
612 | "production": true
613 | },
614 | {
615 | "id": "cbf7ed0123456789cbf7ed0123456",
616 | "category_id": 4,
617 | "title": "Experts Advocate for Increased Investment in Cancer Research and Treatment Facilities",
618 | "rating": {
619 | "number": 4,
620 | "badge": "trending"
621 | },
622 | "total_view": 8234,
623 | "author": {
624 | "name": "Dr. Abu Taher",
625 | "published_date": "2025-04-22T18:15:00.000Z",
626 | "img": "https://randomuser.me/api/portraits/men/58.jpg"
627 | },
628 | "thumbnail_url": "https://uhapo.co.in/wp-content/uploads/2023/12/cancer-treatment-advocate.jpg",
629 | "image_url": "https://uhapo.co.in/wp-content/uploads/2023/12/cancer-treatment-advocate.jpg",
630 | "details": "Leading oncologists and health policy experts in Bangladesh are strongly advocating for increased investment in cancer research and the development of advanced treatment facilities across the country. With a rising incidence of various forms of cancer, there is a growing need for improved diagnostic capabilities, more accessible treatment options, and enhanced palliative care services. Experts emphasize that greater funding for research is crucial to understanding the local epidemiology of cancer and developing tailored treatment approaches. Strengthening existing cancer treatment centers and establishing new, well-equipped facilities are also essential to provide timely and quality care to patients. Increased public awareness campaigns on cancer prevention and early detection are also deemed vital in the fight against this growing health burden.",
631 | "tags": ["cancer", "health", "research", "treatment", "investment"],
632 | "others": {
633 | "is_today_pick": true,
634 | "is_trending": true
635 | },
636 | "production": true
637 | },
638 | {
639 | "id": "dcf7be0123456789dcf7be01234567",
640 | "category_id": 4,
641 | "title": "Efforts Underway to Improve Access to Clean Drinking Water and Sanitation",
642 | "rating": {
643 | "number": 3,
644 | "badge": "trending"
645 | },
646 | "total_view": 6789,
647 | "author": {
648 | "name": "Rehana Begum",
649 | "published_date": "2025-04-22T18:00:00.000Z",
650 | "img": "https://randomuser.me/api/portraits/women/33.jpg"
651 | },
652 | "thumbnail_url": "https://today.thefinancialexpress.com.bd/uploads/1668344716.jpg",
653 | "image_url": "https://today.thefinancialexpress.com.bd/uploads/1668344716.jpg",
654 | "details": "The government and various non-governmental organizations are continuing their concerted efforts to improve access to clean drinking water and sanitation facilities across Bangladesh, particularly in rural and marginalized communities. Initiatives include the installation of new water purification systems, the construction of sanitary latrines, and the implementation of hygiene education programs. Ensuring access to safe water and proper sanitation is crucial for preventing waterborne diseases and improving overall public health. Challenges remain in reaching all populations, and sustained investment and community participation are essential for achieving universal access. Progress is being monitored closely to meet national and international development goals related to water and sanitation.",
655 | "tags": [
656 | "clean water",
657 | "sanitation",
658 | "health",
659 | "government",
660 | "public health"
661 | ],
662 | "others": {
663 | "is_today_pick": false,
664 | "is_trending": false
665 | },
666 | "production": true
667 | },
668 | {
669 | "id": "012345s7abcdef89012345s7a1",
670 | "category_id": 5,
671 | "title": "Bangladesh National Football Team Prepares for Upcoming International Friendly",
672 | "rating": {
673 | "number": 4,
674 | "badge": "trending"
675 | },
676 | "total_view": 13456,
677 | "author": {
678 | "name": "Mahmud Hasan",
679 | "published_date": "2025-04-22T19:15:00.000Z",
680 | "img": "https://randomuser.me/api/portraits/men/91.jpg"
681 | },
682 | "thumbnail_url": "https://www.tbsnews.net/sites/default/files/styles/big_3/public/images/2023/08/07/screenshot_2023-08-07_234956.png",
683 | "image_url": "https://www.tbsnews.net/sites/default/files/styles/big_3/public/images/2023/08/07/screenshot_2023-08-07_234956.png",
684 | "details": "The Bangladesh national football team is currently undergoing intensive training in preparation for their upcoming international friendly match. The coach has emphasized tactical drills and physical conditioning to ensure the team is in peak form for the encounter. Fans are eagerly anticipating the match as it will provide a crucial opportunity to assess the team's progress and identify areas for improvement ahead of future competitive tournaments. The venue and opponent for the friendly are expected to be announced shortly, generating further excitement among supporters. The team is determined to put on a strong performance and secure a positive result in this important preparatory fixture.",
685 | "tags": ["football", "sports", "Bangladesh", "national team", "friendly"],
686 | "others": {
687 | "is_today_pick": true,
688 | "is_trending": true
689 | },
690 | "production": true
691 | },
692 | {
693 | "id": "bcdefa7s123458901bcdefa7s123",
694 | "category_id": 5,
695 | "title": "Bangladesh Cricket Board Announces Domestic League Schedule",
696 | "rating": {
697 | "number": 4,
698 | "badge": "trending"
699 | },
700 | "total_view": 11789,
701 | "author": {
702 | "name": "Ismail Hossain",
703 | "published_date": "2025-04-22T19:00:00.000Z",
704 | "img": "https://randomuser.me/api/portraits/men/17.jpg"
705 | },
706 | "thumbnail_url": "https://img.cricketworld.com/images/e-145767/bangladesh-t20-national-league-2024.jpg",
707 | "image_url": "https://img.cricketworld.com/images/e-145767/bangladesh-t20-national-league-2024.jpg",
708 | "details": "The Bangladesh Cricket Board (BCB) has officially released the schedule for the upcoming domestic cricket league season. The tournament is expected to feature several prominent national and emerging cricketers, providing a platform for showcasing talent and fostering competition at the domestic level. Fans can look forward to an action-packed season with matches played across various venues in the country. The league is considered crucial for identifying future national team prospects and strengthening the overall cricket infrastructure in Bangladesh. Details regarding team compositions and broadcast schedules will be announced in the coming days, building anticipation for the start of the league.",
709 | "tags": ["cricket", "sports", "Bangladesh", "BCB", "domestic league"],
710 | "others": {
711 | "is_today_pick": true,
712 | "is_trending": true
713 | },
714 | "production": true
715 | },
716 | {
717 | "id": "cdefab1s723456901cdefab1s7234",
718 | "category_id": 5,
719 | "title": "Bangladeshi Athlete Wins Gold Medal at International Athletics Championship",
720 | "rating": {
721 | "number": 5,
722 | "badge": "excellent"
723 | },
724 | "total_view": 15234,
725 | "author": {
726 | "name": "Sabrina Akter",
727 | "published_date": "2025-04-22T18:45:00.000Z",
728 | "img": "https://randomuser.me/api/portraits/women/64.jpg"
729 | },
730 | "thumbnail_url": "https://www.tbsnews.net/sites/default/files/styles/amp_metadata_content_image_min_696px_wide/public/images/2023/02/12/imranur.jpg",
731 | "image_url": "https://www.tbsnews.net/sites/default/files/styles/amp_metadata_content_image_min_696px_wide/public/images/2023/02/12/imranur.jpg",
732 | "details": "A talented athlete from Bangladesh has made the nation proud by winning a gold medal at a prestigious international athletics championship. The athlete's remarkable performance in their respective discipline has brought accolades and recognition to Bangladesh in the global sporting arena. This achievement is a testament to the dedication, hard work, and talent of Bangladeshi athletes and the growing standards of sports in the country. The nation celebrates this significant victory, which is expected to inspire more young people to pursue their dreams in sports. Details about the specific event and the athlete's achievement are being widely reported across national media, highlighting this moment of national pride.",
733 | "tags": ["athletics", "sports", "gold medal", "champion", "Bangladesh"],
734 | "others": {
735 | "is_today_pick": true,
736 | "is_trending": true
737 | },
738 | "production": true
739 | },
740 | {
741 | "id": "defabc7s123450123defabc7s12345",
742 | "category_id": 5,
743 | "title": "Bangladesh Hockey Federation Announces New Coaching Staff for National Team",
744 | "rating": {
745 | "number": 3,
746 | "badge": "trending"
747 | },
748 | "total_view": 9876,
749 | "author": {
750 | "name": "Aminul Islam Khan",
751 | "published_date": "2025-04-22T18:30:00.000Z",
752 | "img": "https://randomuser.me/api/portraits/men/39.jpg"
753 | },
754 | "thumbnail_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/dten/2016/10/3-26.jpg",
755 | "image_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/dten/2016/10/3-26.jpg",
756 | "details": "The Bangladesh Hockey Federation has announced a reshuffle in the coaching staff for the national hockey team. A new head coach and several assistant coaches have been appointed as the federation aims to inject fresh strategies and perspectives into the team's preparation for upcoming international competitions. The changes are part of a broader effort to elevate the performance of the national hockey team and improve their standing in Asian hockey. The newly appointed coaching staff brings a wealth of experience and expertise, and their tenure is highly anticipated by players and fans alike. The federation is optimistic that these changes will lead to positive results in future tournaments and contribute to the growth of hockey in Bangladesh.",
757 | "tags": ["hockey", "sports", "Bangladesh", "national team", "coaching"],
758 | "others": {
759 | "is_today_pick": false,
760 | "is_trending": false
761 | },
762 | "production": true
763 | },
764 | {
765 | "id": "efabcd1s723456012efabcd1s723456",
766 | "category_id": 5,
767 | "title": "Local Football Club Secures Major Sponsorship Deal for Upcoming Season",
768 | "rating": {
769 | "number": 4,
770 | "badge": "trending"
771 | },
772 | "total_view": 10567,
773 | "author": {
774 | "name": "Nadia Zaman",
775 | "published_date": "2025-04-22T18:15:00.000Z",
776 | "img": "https://randomuser.me/api/portraits/women/87.jpg"
777 | },
778 | "thumbnail_url": "https://i0.wp.com/financefootball.com/wp-content/uploads/2024/08/sponsor_jerseys.jpg?w=1280&ssl=1",
779 | "image_url": "https://i0.wp.com/financefootball.com/wp-content/uploads/2024/08/sponsor_jerseys.jpg?w=1280&ssl=1",
780 | "details": "A prominent local football club in Bangladesh has announced a significant sponsorship deal with a major corporation for the upcoming football season. This financial boost is expected to provide the club with the resources needed to strengthen its squad, improve training facilities, and enhance its overall operations. The sponsorship agreement underscores the growing commercial interest in Bangladeshi football and the potential for clubs to attract substantial investment. Both the club management and the sponsor have expressed enthusiasm about the partnership and its potential to contribute to the development of football in the region. Fans are hopeful that this new sponsorship will translate into on-field success for the club in the upcoming season.",
781 | "tags": ["football", "sports", "Bangladesh", "sponsorship", "local club"],
782 | "others": {
783 | "is_today_pick": true,
784 | "is_trending": true
785 | },
786 | "production": true
787 | },
788 | {
789 | "id": "f7abcd0s123456789f7abcd0s123",
790 | "category_id": 5,
791 | "title": "Bangladeshi Shuttlers Aim for Top Rankings in Badminton Asia Championships",
792 | "rating": {
793 | "number": 4,
794 | "badge": "trending"
795 | },
796 | "total_view": 8901,
797 | "author": {
798 | "name": "Rashid Khan",
799 | "published_date": "2025-04-22T19:30:00.000Z",
800 | "img": "https://randomuser.me/api/portraits/men/74.jpg"
801 | },
802 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2024/12/17/fads1883.jpg",
803 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2024/12/17/fads1883.jpg",
804 | "details": "A contingent of talented badminton players from Bangladesh is gearing up to participate in the upcoming Badminton Asia Championships. The shuttlers have been undergoing rigorous training to compete against top-ranked players from across the continent. Their participation in this prestigious tournament is a significant step towards elevating the profile of badminton in Bangladesh and achieving higher international rankings. The players have expressed their determination to perform their best and gain valuable experience from competing at such a high level. The nation's badminton enthusiasts are optimistic about their chances and are sending their best wishes for a successful campaign in the championships.",
805 | "tags": [
806 | "badminton",
807 | "sports",
808 | "Bangladesh",
809 | "Asia Championships",
810 | "ranking"
811 | ],
812 | "others": {
813 | "is_today_pick": false,
814 | "is_trending": true
815 | },
816 | "production": true
817 | },
818 | {
819 | "id": "abf7cds123456789abf7cds1234",
820 | "category_id": 5,
821 | "title": "Local Cyclists Prepare for National Championship Race",
822 | "rating": {
823 | "number": 3,
824 | "badge": "trending"
825 | },
826 | "total_view": 6543,
827 | "author": {
828 | "name": "Momena Begum",
829 | "published_date": "2025-04-22T19:15:00.000Z",
830 | "img": "https://randomuser.me/api/portraits/women/49.jpg"
831 | },
832 | "thumbnail_url": "https://www.timesrecordnews.com/gcdn/presto/2019/08/25/PWTR/898bd236-8fe5-4ce1-9eb8-6346348361ae-HHH_GravaDelFuego1.jpg?crop=3751,2110,x0,y341&width=660&height=372&format=pjpg&auto=webp",
833 | "image_url": "https://www.timesrecordnews.com/gcdn/presto/2019/08/25/PWTR/898bd236-8fe5-4ce1-9eb8-6346348361ae-HHH_GravaDelFuego1.jpg?crop=3751,2110,x0,y341&width=660&height=372&format=pjpg&auto=webp",
834 | "details": "Dedicated cyclists from various parts of Bangladesh are currently engaged in intense training as they prepare for the upcoming National Cycling Championship race. This annual event is a highlight in the national cycling calendar, attracting top talent from across the country. The cyclists are focusing on endurance, speed, and strategic race techniques to compete for the coveted national titles in different categories. Cycling enthusiasts and local communities are eagerly anticipating the event, which is expected to showcase the growing popularity and skill level in the sport within Bangladesh. The routes and schedule for the championship race will be announced shortly by the Bangladesh Cycling Federation.",
835 | "tags": [
836 | "cycling",
837 | "sports",
838 | "Bangladesh",
839 | "national championship",
840 | "race"
841 | ],
842 | "others": {
843 | "is_today_pick": false,
844 | "is_trending": false
845 | },
846 | "production": true
847 | },
848 | {
849 | "id": "baf7des123456789baf7des12345",
850 | "category_id": 5,
851 | "title": "Bangladesh Women's Cricket Team Gears Up for T20 Series",
852 | "rating": {
853 | "number": 4,
854 | "badge": "trending"
855 | },
856 | "total_view": 10123,
857 | "author": {
858 | "name": "Nazmul Hossain Shanto",
859 | "published_date": "2025-04-22T19:00:00.000Z",
860 | "img": "https://randomuser.me/api/portraits/men/65.jpg"
861 | },
862 | "thumbnail_url": "https://womencricket.com/wp-content/uploads/2024/09/Bangladesh-squad-for-Womens-T20-World-Cup-2024.webp",
863 | "image_url": "https://womencricket.com/wp-content/uploads/2024/09/Bangladesh-squad-for-Womens-T20-World-Cup-2024.webp",
864 | "details": "The Bangladesh women's national cricket team is actively preparing for an upcoming T20 international series. The players are undergoing rigorous training sessions focusing on batting, bowling, and fielding skills, as well as strategic game planning for the fast-paced format. The team is aiming to build on their recent performances and achieve success in the upcoming series. Fans are showing strong support for the Tigresses, hoping for an exciting and victorious campaign. Details regarding the opponent and the match schedule are expected to be released soon by the Bangladesh Cricket Board (BCB), generating anticipation among cricket followers across the nation.",
865 | "tags": ["cricket", "sports", "Bangladesh", "women's cricket", "T20"],
866 | "others": {
867 | "is_today_pick": true,
868 | "is_trending": true
869 | },
870 | "production": true
871 | },
872 | {
873 | "id": "012345e7abcdef89012345e7ab",
874 | "category_id": 6,
875 | "title": "Popular Bangladeshi Drama Series Finale Airs Tonight, Fans Eager for Conclusion",
876 | "rating": {
877 | "number": 5,
878 | "badge": "excellent"
879 | },
880 | "total_view": 18765,
881 | "author": {
882 | "name": "Farah Naznin",
883 | "published_date": "2025-04-22T19:45:00.000Z",
884 | "img": "https://randomuser.me/api/portraits/women/52.jpg"
885 | },
886 | "thumbnail_url": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202405/6633429ec190f-amazon-prime-video-previously-shared-stills-from-the-panchayat-3-sets-023701165-16x9.jpeg?size=948:533",
887 | "image_url": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202405/6633429ec190f-amazon-prime-video-previously-shared-stills-from-the-panchayat-3-sets-023701165-16x9.jpeg?size=948:533",
888 | "details": "Tonight marks the highly anticipated finale of a widely popular Bangladeshi television drama series that has captivated audiences across the nation for the past several months. Fans have been eagerly awaiting the conclusion of the compelling storyline and the fate of their favorite characters. Social media platforms are abuzz with predictions and discussions about the final episode, highlighting the show's significant cultural impact and widespread appeal. The cast and crew have expressed their gratitude for the overwhelming support from viewers. Entertainment critics are also weighing in on the series' success and its contribution to the local television industry. The finale is expected to draw a massive viewership, solidifying the drama's place as a landmark production in Bangladeshi television history.",
889 | "tags": [
890 | "entertainment",
891 | "drama series",
892 | "television",
893 | "finale",
894 | "Bangladesh"
895 | ],
896 | "others": {
897 | "is_today_pick": true,
898 | "is_trending": true
899 | },
900 | "production": true
901 | },
902 | {
903 | "id": "bcdefa7e123458901bcdefa7e123",
904 | "category_id": 6,
905 | "title": "Celebrated Bangladeshi Musician Announces Nationwide Concert Tour",
906 | "rating": {
907 | "number": 4,
908 | "badge": "trending"
909 | },
910 | "total_view": 14321,
911 | "author": {
912 | "name": "Arnob Zahid",
913 | "published_date": "2025-04-22T19:30:00.000Z",
914 | "img": "https://randomuser.me/api/portraits/men/37.jpg"
915 | },
916 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/very_big_1/public/images/2025/03/29/486283312_4854583331433797_1658207744142557519_n_1.jpg",
917 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/very_big_1/public/images/2025/03/29/486283312_4854583331433797_1658207744142557519_n_1.jpg",
918 | "details": "A celebrated and beloved musician from Bangladesh has announced an upcoming nationwide concert tour, much to the delight of fans across the country. The tour is scheduled to cover major cities and towns, offering a wide audience the opportunity to experience the artist's iconic music live. This highly anticipated series of performances is expected to feature a mix of classic hits and new releases, showcasing the musician's enduring contribution to the Bangladeshi music scene. Ticket sales are set to begin soon, and organizers anticipate a high demand given the artist's immense popularity. The tour is being hailed as a significant cultural event, bringing together music lovers from all walks of life to celebrate the rich musical heritage of Bangladesh.",
919 | "tags": ["entertainment", "music", "concert tour", "artist", "Bangladesh"],
920 | "others": {
921 | "is_today_pick": true,
922 | "is_trending": true
923 | },
924 | "production": true
925 | },
926 | {
927 | "id": "cdefab1e723456901cdefab1e7234",
928 | "category_id": 6,
929 | "title": "Bangladeshi Film Festival Showcases Emerging Talents and Independent Cinema",
930 | "rating": {
931 | "number": 4,
932 | "badge": "trending"
933 | },
934 | "total_view": 11876,
935 | "author": {
936 | "name": "Nusrat Amin",
937 | "published_date": "2025-04-22T19:15:00.000Z",
938 | "img": "https://randomuser.me/api/portraits/women/28.jpg"
939 | },
940 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/very_big_201/public/images/2023/06/09/352001949_943465060295562_3232606149780680309_n.jpg",
941 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/very_big_201/public/images/2023/06/09/352001949_943465060295562_3232606149780680309_n.jpg",
942 | "details": "The annual Bangladeshi Film Festival is currently underway, showcasing a diverse selection of films from both established directors and emerging talents in the independent cinema scene. The festival provides a platform for filmmakers to share their unique stories and perspectives with a wider audience, fostering creativity and innovation within the industry. This year's lineup features a range of genres, including drama, documentary, and experimental films, reflecting the rich and evolving narrative landscape of Bangladeshi cinema. The festival also includes workshops, panel discussions, and networking events, creating opportunities for filmmakers to connect and collaborate. It serves as an important cultural event, celebrating the art of filmmaking and promoting the growth of independent cinema in Bangladesh.",
943 | "tags": [
944 | "entertainment",
945 | "film festival",
946 | "cinema",
947 | "independent film",
948 | "Bangladesh"
949 | ],
950 | "others": {
951 | "is_today_pick": true,
952 | "is_trending": true
953 | },
954 | "production": true
955 | },
956 | {
957 | "id": "defabc7e123450123defabc7e12345",
958 | "category_id": 6,
959 | "title": "Controversial Reality Show Faces Backlash Over Ethical Concerns",
960 | "rating": {
961 | "number": 2,
962 | "badge": "trending"
963 | },
964 | "total_view": 9543,
965 | "author": {
966 | "name": "Tanvir Hossain",
967 | "published_date": "2025-04-22T19:00:00.000Z",
968 | "img": "https://randomuser.me/api/portraits/men/55.jpg"
969 | },
970 | "thumbnail_url": "https://www.shutterstock.com/image-vector/editable-reality-show-text-effecttyphography-260nw-2454488881.jpg",
971 | "image_url": "https://www.shutterstock.com/image-vector/editable-reality-show-text-effecttyphography-260nw-2454488881.jpg",
972 | "details": "A popular but controversial reality television show in Bangladesh is currently facing significant backlash from viewers and critics alike due to growing ethical concerns surrounding its content and production practices. Allegations of manipulation, exploitation of participants, and the creation of artificial drama have surfaced, leading to widespread debate on social media and calls for the show to be reviewed or even taken off the air. Several prominent figures in the entertainment industry and social activists have voiced their disapproval, highlighting the potential negative impact of such programming on audiences. The broadcasting channel has yet to issue a formal response to the mounting criticism, leaving many to speculate about the future of the show and the broader implications for ethical standards in Bangladeshi reality television.",
973 | "tags": [
974 | "entertainment",
975 | "reality show",
976 | "controversy",
977 | "ethics",
978 | "television"
979 | ],
980 | "others": {
981 | "is_today_pick": false,
982 | "is_trending": false
983 | },
984 | "production": true
985 | },
986 | {
987 | "id": "e7abcd0123456789e7abcd01234",
988 | "category_id": 6,
989 | "title": "Bangladeshi Author's New Novel Garners International Acclaim",
990 | "rating": {
991 | "number": 5,
992 | "badge": "excellent"
993 | },
994 | "total_view": 12567,
995 | "author": {
996 | "name": "Tahmima Anam",
997 | "published_date": "2025-04-22T19:45:00.000Z",
998 | "img": "https://randomuser.me/api/portraits/women/11.jpg"
999 | },
1000 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2024/02/24/lit.jpg",
1001 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2024/02/24/lit.jpg",
1002 | "details": "The latest novel by a celebrated Bangladeshi author has received widespread critical acclaim on the international literary scene. The book, which explores themes of identity, displacement, and resilience, has been praised for its powerful storytelling, evocative prose, and insightful portrayal of human experiences. Reviews in major international publications have lauded the author's unique voice and the novel's significant contribution to contemporary literature. This international recognition not only brings honor to the author but also highlights the rich literary talent emerging from Bangladesh. Discussions and translations of the novel are expected to further expand its reach to a global readership, showcasing the diverse narratives and artistic excellence of Bangladeshi writers.",
1003 | "tags": [
1004 | "entertainment",
1005 | "literature",
1006 | "novel",
1007 | "author",
1008 | "international acclaim"
1009 | ],
1010 | "others": {
1011 | "is_today_pick": true,
1012 | "is_trending": true
1013 | },
1014 | "production": true
1015 | },
1016 | {
1017 | "id": "f7abcde123456789f7abcde12345",
1018 | "category_id": 6,
1019 | "title": "Stand-Up Comedy Scene Thriving in Dhaka, New Talents Emerging",
1020 | "rating": {
1021 | "number": 4,
1022 | "badge": "trending"
1023 | },
1024 | "total_view": 9876,
1025 | "author": {
1026 | "name": "Naved Mahbub",
1027 | "published_date": "2025-04-22T19:30:00.000Z",
1028 | "img": "https://randomuser.me/api/portraits/men/88.jpg"
1029 | },
1030 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/very_big_1/public/images/2025/04/08/collected_img_4803_2.jpg",
1031 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/very_big_1/public/images/2025/04/08/collected_img_4803_2.jpg",
1032 | "details": "The stand-up comedy scene in Dhaka is experiencing a vibrant period of growth, with numerous new talents emerging and captivating audiences with their unique styles and perspectives. Open mic nights and comedy shows are becoming increasingly popular, providing a platform for both seasoned comedians and newcomers to showcase their skills. The growing interest in stand-up comedy reflects a shift in the local entertainment landscape, with audiences seeking fresh and relatable humor. Venues across the city are hosting regular comedy events, contributing to the development of a thriving comedy culture in Bangladesh's capital. This burgeoning scene is not only providing entertainment but also fostering a space for social commentary and creative expression.",
1033 | "tags": ["entertainment", "comedy", "stand-up", "Dhaka", "culture"],
1034 | "others": {
1035 | "is_today_pick": true,
1036 | "is_trending": true
1037 | },
1038 | "production": true
1039 | },
1040 | {
1041 | "id": "abf7cde123456789abf7cde123456",
1042 | "category_id": 6,
1043 | "title": "Bangladeshi Short Film Wins Award at International Festival",
1044 | "rating": {
1045 | "number": 5,
1046 | "badge": "excellent"
1047 | },
1048 | "total_view": 11234,
1049 | "author": {
1050 | "name": "Meher Afroz Shaon",
1051 | "published_date": "2025-04-22T19:15:00.000Z",
1052 | "img": "https://randomuser.me/api/portraits/women/39.jpg"
1053 | },
1054 | "thumbnail_url": "https://outspoken.newagebd.com/files/img/202502/c60ec5830d52c4bcc8da9bb07c5de7bc.jpeg",
1055 | "image_url": "https://outspoken.newagebd.com/files/img/202502/c60ec5830d52c4bcc8da9bb07c5de7bc.jpeg",
1056 | "details": "A compelling short film from Bangladesh has garnered international recognition by winning a prestigious award at a renowned international film festival. The film, praised for its poignant narrative and skillful execution, has resonated with audiences and critics alike. This achievement highlights the growing talent and creativity within the Bangladeshi film industry and its potential to make a significant impact on the global cinematic stage. The award is expected to open up new opportunities for the filmmakers and further showcase the diverse stories and artistic capabilities of Bangladeshi cinema to a wider international audience. The film's success is being celebrated within the local film community as a testament to the quality and potential of short-form storytelling from Bangladesh.",
1057 | "tags": [
1058 | "entertainment",
1059 | "short film",
1060 | "film festival",
1061 | "award",
1062 | "Bangladesh"
1063 | ],
1064 | "others": {
1065 | "is_today_pick": true,
1066 | "is_trending": true
1067 | },
1068 | "production": true
1069 | },
1070 | {
1071 | "id": "012345s7abcdef89012345s7ab",
1072 | "category_id": 7,
1073 | "title": "Bangladeshi Scientists Discover Novel Gene Linked to Plant Disease Resistance",
1074 | "rating": {
1075 | "number": 4,
1076 | "badge": "trending"
1077 | },
1078 | "total_view": 7890,
1079 | "author": {
1080 | "name": "Dr. Farhana Alam",
1081 | "published_date": "2025-04-22T20:00:00.000Z",
1082 | "img": "https://randomuser.me/api/portraits/women/71.jpg"
1083 | },
1084 | "thumbnail_url": "https://www.mdpi.com/plants/plants-13-02737/article_deploy/html/images/plants-13-02737-g001.png",
1085 | "image_url": "https://www.mdpi.com/plants/plants-13-02737/article_deploy/html/images/plants-13-02737-g001.png",
1086 | "details": "A team of Bangladeshi scientists has made a significant breakthrough in agricultural science by identifying a novel gene in local plant species that exhibits strong resistance to a prevalent disease affecting crops. This discovery holds immense potential for developing disease-resistant crop varieties through genetic modification or selective breeding, which could significantly enhance agricultural productivity and food security in Bangladesh. The researchers have published their findings in a peer-reviewed scientific journal, garnering attention from the international scientific community. Further research is underway to fully understand the gene's function and explore its applications in improving the resilience of various staple crops against common plant pathogens. This advancement underscores the growing capabilities of Bangladeshi scientists in contributing to global agricultural innovation.",
1087 | "tags": ["science", "biology", "genetics", "agriculture", "research"],
1088 | "others": {
1089 | "is_today_pick": true,
1090 | "is_trending": true
1091 | },
1092 | "production": true
1093 | },
1094 | {
1095 | "id": "bcdefa7s123458901bcdefa7s121",
1096 | "category_id": 7,
1097 | "title": "Archaeological Excavation Uncovers Ancient Civilization Site in Northern Bangladesh",
1098 | "rating": {
1099 | "number": 5,
1100 | "badge": "excellent"
1101 | },
1102 | "total_view": 9123,
1103 | "author": {
1104 | "name": "Dr. Jamal Hossain",
1105 | "published_date": "2025-04-22T19:45:00.000Z",
1106 | "img": "https://randomuser.me/api/portraits/men/43.jpg"
1107 | },
1108 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2024/12/14/crown-jewels-of-bengal-8.jpg",
1109 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2024/12/14/crown-jewels-of-bengal-8.jpg",
1110 | "details": "A significant archaeological excavation in the northern region of Bangladesh has unearthed the remnants of a previously unknown ancient civilization. The discovery includes well-preserved architectural structures, pottery, and artifacts, providing valuable insights into the history and cultural heritage of the area. Archaeologists believe the site dates back several centuries and could potentially rewrite aspects of the region's early history. The findings are currently being carefully analyzed and documented by a team of experts. The government has announced plans to preserve the site and conduct further research to fully understand the significance of this remarkable discovery, which is expected to attract considerable interest from historians and researchers worldwide.",
1111 | "tags": ["science", "archaeology", "history", "civilization", "Bangladesh"],
1112 | "others": {
1113 | "is_today_pick": true,
1114 | "is_trending": true
1115 | },
1116 | "production": true
1117 | },
1118 | {
1119 | "id": "cdefab1s723456901cdefab1s7232",
1120 | "category_id": 7,
1121 | "title": "Bangladeshi Physicists Contribute to International Research on Dark Matter",
1122 | "rating": {
1123 | "number": 4,
1124 | "badge": "trending"
1125 | },
1126 | "total_view": 6543,
1127 | "author": {
1128 | "name": "Dr. Shamima Chowdhury",
1129 | "published_date": "2025-04-22T19:30:00.000Z",
1130 | "img": "https://randomuser.me/api/portraits/women/85.jpg"
1131 | },
1132 | "thumbnail_url": "https://news.mit.edu/sites/default/files/images/202409/MIT_Mars-Wobble-01-PRESS.jpg",
1133 | "image_url": "https://news.mit.edu/sites/default/files/images/202409/MIT_Mars-Wobble-01-PRESS.jpg",
1134 | "details": "A team of physicists from a leading university in Bangladesh has made valuable contributions to an international collaborative research project focused on understanding the elusive phenomenon of dark matter. Their work involves analyzing data from sophisticated particle detectors and developing theoretical models to shed light on the nature and properties of this mysterious substance that makes up a significant portion of the universe's mass. The Bangladeshi scientists' involvement in this cutting-edge research highlights the growing expertise in fundamental physics within the country and their ability to contribute to global scientific advancements. The findings of the collaborative project are expected to be published in a high-impact physics journal, further solidifying the team's contribution to the field.",
1135 | "tags": ["science", "physics", "astronomy", "dark matter", "research"],
1136 | "others": {
1137 | "is_today_pick": false,
1138 | "is_trending": true
1139 | },
1140 | "production": true
1141 | },
1142 | {
1143 | "id": "defabc7s123450123defabc7s12344",
1144 | "category_id": 7,
1145 | "title": "Environmental Scientists Study Impact of Climate Change on Coastal Ecosystems in Bangladesh",
1146 | "rating": {
1147 | "number": 4,
1148 | "badge": "trending"
1149 | },
1150 | "total_view": 8234,
1151 | "author": {
1152 | "name": "Dr. Anisul Haque",
1153 | "published_date": "2025-04-22T19:15:00.000Z",
1154 | "img": "https://randomuser.me/api/portraits/men/59.jpg"
1155 | },
1156 | "thumbnail_url": "https://media.licdn.com/dms/image/v2/D5612AQEVc7-GJJYhBg/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1685640246972?e=2147483647&v=beta&t=f7hge4YAWV65gqIoYMAaLzRFZ7dNOwat9v_bX7_LIYg",
1157 | "image_url": "https://media.licdn.com/dms/image/v2/D5612AQEVc7-GJJYhBg/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1685640246972?e=2147483647&v=beta&t=f7hge4YAWV65gqIoYMAaLzRFZ7dNOwat9v_bX7_LIYg",
1158 | "details": "A team of environmental scientists in Bangladesh is conducting extensive research on the impact of climate change on the fragile coastal ecosystems of the country. Their study focuses on the effects of rising sea levels, increased salinity, and extreme weather events on mangrove forests, biodiversity, and local communities. The researchers are employing advanced monitoring techniques and data analysis to assess the vulnerability of these ecosystems and develop strategies for adaptation and conservation. Their findings are crucial for informing policy decisions aimed at mitigating the adverse effects of climate change on Bangladesh's coastal regions and protecting the livelihoods of the millions of people who depend on these vital natural resources. The study's results are expected to contribute significantly to the understanding of climate change impacts in low-lying deltaic regions globally.",
1159 | "tags": [
1160 | "science",
1161 | "environment",
1162 | "climate change",
1163 | "ecology",
1164 | "Bangladesh"
1165 | ],
1166 | "others": {
1167 | "is_today_pick": true,
1168 | "is_trending": true
1169 | },
1170 | "production": true
1171 | },
1172 | {
1173 | "id": "efabcd1s723456012efabcd1s723454",
1174 | "category_id": 7,
1175 | "title": "Researchers Develop Innovative Biodegradable Packaging Material from Jute Fibers",
1176 | "rating": {
1177 | "number": 5,
1178 | "badge": "excellent"
1179 | },
1180 | "total_view": 10567,
1181 | "author": {
1182 | "name": "Dr. Rina Khan",
1183 | "published_date": "2025-04-22T19:00:00.000Z",
1184 | "img": "https://randomuser.me/api/portraits/women/24.jpg"
1185 | },
1186 | "thumbnail_url": "https://today.thefinancialexpress.com.bd/uploads/1735054377.jpg",
1187 | "image_url": "https://today.thefinancialexpress.com.bd/uploads/1735054377.jpg",
1188 | "details": "Scientists in Bangladesh have successfully developed an innovative and environmentally friendly biodegradable packaging material derived from jute fibers. This research offers a sustainable alternative to traditional plastic packaging, addressing growing concerns about plastic pollution and its impact on the environment. The newly developed material exhibits promising strength and durability, making it suitable for a wide range of packaging applications. The researchers are now focusing on optimizing the production process and exploring its commercial viability. This breakthrough not only provides an eco-friendly solution but also has the potential to boost the jute industry in Bangladesh by creating new avenues for the utilization of this natural fiber. The development is being hailed as a significant step towards promoting sustainable practices and reducing reliance on non-biodegradable materials.",
1189 | "tags": [
1190 | "science",
1191 | "materials science",
1192 | "environment",
1193 | "jute",
1194 | "sustainability"
1195 | ],
1196 | "others": {
1197 | "is_today_pick": true,
1198 | "is_trending": true
1199 | },
1200 | "production": true
1201 | },
1202 | {
1203 | "id": "f7abcd0s123456789f7abcd0s121",
1204 | "category_id": 7,
1205 | "title": "Bangladeshi Mathematicians Solve Long-Standing Problem in Number Theory",
1206 | "rating": {
1207 | "number": 5,
1208 | "badge": "excellent"
1209 | },
1210 | "total_view": 5432,
1211 | "author": {
1212 | "name": "Professor Salim Ahmed",
1213 | "published_date": "2025-04-22T20:15:00.000Z",
1214 | "img": "https://randomuser.me/api/portraits/men/14.jpg"
1215 | },
1216 | "thumbnail_url": "https://images.shiksha.com/mediadata/images/articles/1740904479phpiAzTRD.jpeg",
1217 | "image_url": "https://images.shiksha.com/mediadata/images/articles/1740904479phpiAzTRD.jpeg",
1218 | "details": "A team of mathematicians from Bangladesh has achieved a significant breakthrough by solving a long-standing problem in the field of number theory. This complex mathematical puzzle has puzzled researchers for decades, and the elegant solution provided by the Bangladeshi team is being lauded by the international mathematical community. Their findings have been rigorously reviewed and are set to be published in a leading mathematics journal. This achievement underscores the high caliber of mathematical research being conducted in Bangladesh and is expected to inspire the next generation of mathematicians in the country. The solution has potential implications for various fields, including cryptography and computer science.",
1219 | "tags": [
1220 | "science",
1221 | "mathematics",
1222 | "number theory",
1223 | "research",
1224 | "breakthrough"
1225 | ],
1226 | "others": {
1227 | "is_today_pick": true,
1228 | "is_trending": true
1229 | },
1230 | "production": true
1231 | },
1232 | {
1233 | "id": "e7abcd0p123456789e7abcd0p1234",
1234 | "category_id": 8,
1235 | "title": "Dr. Muhammad Yunus Calls for Social Business Initiatives to Combat Poverty",
1236 | "rating": {
1237 | "number": 4,
1238 | "badge": "trending"
1239 | },
1240 | "total_view": 11234,
1241 | "author": {
1242 | "name": "Dr. Muhammad Yunus",
1243 | "published_date": "2025-04-22T20:45:00.000Z",
1244 | "img": "https://randomuser.me/api/portraits/men/61.jpg"
1245 | },
1246 | "thumbnail_url": "https://encdn.bd-pratidin.com/public/news_images/2025/02/11/1739252245-9f321b93650f26f5d3aeade74457289d.jpg",
1247 | "image_url": "https://encdn.bd-pratidin.com/public/news_images/2025/02/11/1739252245-9f321b93650f26f5d3aeade74457289d.jpg",
1248 | "details": "Dr. Muhammad Yunus, Nobel Peace Prize laureate and pioneer of microcredit, has renewed his call for the promotion of social business initiatives to address poverty and social inequality in Bangladesh. During a recent address, he emphasized the importance of enterprises that prioritize social impact over profit maximization. He highlighted several successful examples of social businesses that have positively transformed communities and urged the government and private sector to invest more in such ventures. Dr. Yunus believes that social businesses can play a crucial role in creating sustainable solutions to pressing social problems, fostering economic empowerment, and building a more inclusive society. His advocacy continues to inspire entrepreneurs and policymakers to explore innovative approaches to development.",
1249 | "tags": [
1250 | "politics",
1251 | "social business",
1252 | "Dr. Muhammad Yunus",
1253 | "poverty",
1254 | "development"
1255 | ],
1256 | "others": {
1257 | "is_today_pick": true,
1258 | "is_trending": true
1259 | },
1260 | "production": true
1261 | },
1262 | {
1263 | "id": "abf7cds123456789abf7cds1233",
1264 | "category_id": 7,
1265 | "title": "Study Reveals New Insights into Bird Migration Patterns in Bangladesh",
1266 | "rating": {
1267 | "number": 4,
1268 | "badge": "trending"
1269 | },
1270 | "total_view": 6789,
1271 | "author": {
1272 | "name": "Dr. Naima Rahman",
1273 | "published_date": "2025-04-22T20:00:00.000Z",
1274 | "img": "https://randomuser.me/api/portraits/women/69.jpg"
1275 | },
1276 | "thumbnail_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2022/10/08/whatsapp_image_2022-10-08_at_7.06.14_pm.jpeg",
1277 | "image_url": "https://tds-images.thedailystar.net/sites/default/files/styles/big_202/public/images/2022/10/08/whatsapp_image_2022-10-08_at_7.06.14_pm.jpeg",
1278 | "details": "A comprehensive study conducted by ornithologists in Bangladesh has provided new and valuable insights into the migration patterns of various bird species that pass through or reside in the country. By utilizing advanced tracking technologies and long-term observation data, the researchers have uncovered previously unknown migratory routes, stopover sites, and breeding grounds. This information is crucial for conservation efforts aimed at protecting these bird populations and their habitats, which are facing increasing threats from habitat loss and climate change. The findings of this study have been published in a leading ornithological journal and are expected to contribute significantly to our understanding of avian ecology in the South Asian region.",
1279 | "tags": ["science", "biology", "ornithology", "ecology", "migration"],
1280 | "others": {
1281 | "is_today_pick": false,
1282 | "is_trending": true
1283 | },
1284 | "production": true
1285 | },
1286 | {
1287 | "id": "f7abcde1p23456789f7abcde1p2345",
1288 | "category_id": 8,
1289 | "title": "Calls for Interim Government Intensify Ahead of National Elections",
1290 | "rating": {
1291 | "number": 3,
1292 | "badge": "trending"
1293 | },
1294 | "total_view": 9876,
1295 | "author": {
1296 | "name": "Kamal Hossain",
1297 | "published_date": "2025-04-22T20:30:00.000Z",
1298 | "img": "https://randomuser.me/api/portraits/men/22.jpg"
1299 | },
1300 | "thumbnail_url": "https://peoplesdispatch.org/wp-content/uploads/2025/02/Bangladesh-interim-govt-2.jpg",
1301 | "image_url": "https://peoplesdispatch.org/wp-content/uploads/2025/02/Bangladesh-interim-govt-2.jpg",
1302 | "details": "As the date for the next national elections approaches, calls for the formation of an interim government are intensifying from various political factions and civil society groups. These groups argue that an interim government is necessary to ensure a free and fair election process, free from any potential influence from the incumbent administration. The ruling party, however, has maintained its stance that the current government will oversee the elections, as per the constitutional provisions. This disagreement has led to increased political tensions, with opposition parties threatening to boycott the elections if their demands are not met. Discussions and negotiations are ongoing to find a mutually acceptable solution, but the issue remains a significant point of contention in the lead-up to the polls.",
1303 | "tags": [
1304 | "politics",
1305 | "interim government",
1306 | "elections",
1307 | "opposition",
1308 | "Bangladesh"
1309 | ],
1310 | "others": {
1311 | "is_today_pick": false,
1312 | "is_trending": false
1313 | },
1314 | "production": true
1315 | },
1316 | {
1317 | "id": "abf7cde1p23456789abf7cde123456",
1318 | "category_id": 8,
1319 | "title": "BNP Announces Mass Protests Against Government Policies",
1320 | "rating": {
1321 | "number": 3,
1322 | "badge": "trending"
1323 | },
1324 | "total_view": 10567,
1325 | "author": {
1326 | "name": "Mirza Fakhrul Islam Alamgir",
1327 | "published_date": "2025-04-22T20:15:00.000Z",
1328 | "img": "https://randomuser.me/api/portraits/men/44.jpg"
1329 | },
1330 | "thumbnail_url": "https://cosmosgroup.sgp1.digitaloceanspaces.com/news/8639917.webp",
1331 | "image_url": "https://cosmosgroup.sgp1.digitaloceanspaces.com/news/8639917.webp",
1332 | "details": "The Bangladesh Nationalist Party (BNP), a major opposition party, has announced plans to hold a series of mass protests across the country to demonstrate against what they perceive as anti-people policies of the current government. The BNP alleges that the government's economic policies have led to increased inflation and hardship for ordinary citizens. They are also demanding electoral reforms and the release of detained political leaders. The announcement has heightened political tensions, with the government warning against any disruptive activities. Security forces are on high alert, and the upcoming protests are expected to draw significant attention from both national and international observers. The BNP aims to mobilize its supporters and exert pressure on the government to address their demands.",
1333 | "tags": [
1334 | "politics",
1335 | "BNP",
1336 | "protests",
1337 | "government policies",
1338 | "opposition"
1339 | ],
1340 | "others": {
1341 | "is_today_pick": true,
1342 | "is_trending": false
1343 | },
1344 | "production": true
1345 | },
1346 | {
1347 | "id": "baf7des1p23456789baf7des12345",
1348 | "category_id": 8,
1349 | "title": "Sajid's Political Commentary Sparks Debate on Social Media",
1350 | "rating": {
1351 | "number": 3,
1352 | "badge": "trending"
1353 | },
1354 | "total_view": 8901,
1355 | "author": {
1356 | "name": "Sajid Hasan",
1357 | "published_date": "2025-04-22T20:00:00.000Z",
1358 | "img": "https://randomuser.me/api/portraits/men/55.jpg"
1359 | },
1360 | "thumbnail_url": "https://ecdn.dhakatribune.net/contents/cache/images/800x450x1/uploads/media/2024/09/14/Sarjis-Alam-4dba928c6850093c2b430a6c14590be2.jpg?jadewits_media_id=28752",
1361 | "image_url": "https://ecdn.dhakatribune.net/contents/cache/images/800x450x1/uploads/media/2024/09/14/Sarjis-Alam-4dba928c6850093c2b430a6c14590be2.jpg?jadewits_media_id=28752",
1362 | "details": "A recent political commentary by social media influencer Sajid has ignited a widespread debate across various online platforms in Bangladesh. His remarks, which criticized certain government policies and political figures, have drawn both support and strong condemnation from different segments of the online community. The commentary has raised questions about freedom of expression and the role of social media in shaping political discourse. While some see Sajid's comments as a courageous critique of authority, others have accused him of spreading misinformation and inciting unrest. The controversy has amplified discussions about the responsibilities of social media influencers and the need for balanced and informed political dialogue in the digital age.",
1363 | "tags": ["politics", "Sajid", "social media", "commentary", "debate"],
1364 | "others": {
1365 | "is_today_pick": false,
1366 | "is_trending": false
1367 | },
1368 | "production": true
1369 | },
1370 | {
1371 | "id": "012345p7abcdef89012345p7ab",
1372 | "category_id": 8,
1373 | "title": "Parliament Debates New Legislation on Digital Security",
1374 | "rating": {
1375 | "number": 3,
1376 | "badge": "trending"
1377 | },
1378 | "total_view": 10234,
1379 | "author": {
1380 | "name": "Khaled Masud",
1381 | "published_date": "2025-04-22T20:30:00.000Z",
1382 | "img": "https://randomuser.me/api/portraits/men/30.jpg"
1383 | },
1384 | "thumbnail_url": "https://idsb.tmgrup.com.tr/ly/uploads/images/2025/02/23/thumbs/1200x675/369892.jpg",
1385 | "image_url": "https://idsb.tmgrup.com.tr/ly/uploads/images/2025/02/23/thumbs/1200x675/369892.jpg",
1386 | "details": "The Parliament of Bangladesh is currently engaged in a heated debate over proposed new legislation concerning digital security. The bill aims to update existing laws to address emerging cyber threats and protect digital infrastructure. However, concerns have been raised by opposition parties and civil society organizations regarding potential implications for freedom of speech and online expression. Several amendments have been proposed, and the parliamentary sessions are expected to continue as lawmakers work towards reaching a consensus on the final version of the bill. The outcome of this legislative process is being closely watched by various stakeholders, including technology companies, human rights groups, and the general public, given its potential impact on the digital landscape of the country.",
1387 | "tags": [
1388 | "politics",
1389 | "legislation",
1390 | "digital security",
1391 | "parliament",
1392 | "Bangladesh"
1393 | ],
1394 | "others": {
1395 | "is_today_pick": true,
1396 | "is_trending": true
1397 | },
1398 | "production": true
1399 | },
1400 | {
1401 | "id": "cbf7ed01p23456789cbf7ed0123456",
1402 | "category_id": 8,
1403 | "title": "Hasnat's Economic Analysis Raises Concerns Over National Debt",
1404 | "rating": {
1405 | "number": 3,
1406 | "badge": "trending"
1407 | },
1408 | "total_view": 7654,
1409 | "author": {
1410 | "name": "Hasnat Karim",
1411 | "published_date": "2025-04-22T19:45:00.000Z",
1412 | "img": "https://randomuser.me/api/portraits/men/12.jpg"
1413 | },
1414 | "thumbnail_url": "https://media.prothomalo.com/prothomalo-english%2F2024-11-20%2F5h78np98%2FHasnat-Abdullah.webp?rect=0%2C0%2C800%2C533&w=622&auto=format%2Ccompress&fmt=avif",
1415 | "image_url": "https://media.prothomalo.com/prothomalo-english%2F2024-11-20%2F5h78np98%2FHasnat-Abdullah.webp?rect=0%2C0%2C800%2C533&w=622&auto=format%2Ccompress&fmt=avif",
1416 | "details": "An economic analysis published by Hasnat, a prominent economist, has raised concerns over the increasing national debt of Bangladesh. The report highlights the potential risks associated with the country's growing debt burden and calls for more prudent fiscal management. Hasnat's analysis has sparked discussions among economists, policymakers, and the public about the long-term sustainability of the nation's economic policies. The government has responded by stating that the debt is manageable and that they are taking measures to ensure fiscal stability. However, the report has fueled debates about the need for greater transparency and accountability in public spending and the importance of addressing the national debt to safeguard the country's economic future.",
1417 | "tags": ["politics", "economy", "national debt", "Hasnat", "analysis"],
1418 | "others": {
1419 | "is_today_pick": false,
1420 | "is_trending": false
1421 | },
1422 | "production": true
1423 | },
1424 | {
1425 | "id": "bcdefa7p123458901bcdefa7p123",
1426 | "category_id": 8,
1427 | "title": "Major Political Parties Announce Preparations for Upcoming Local Elections",
1428 | "rating": {
1429 | "number": 4,
1430 | "badge": "trending"
1431 | },
1432 | "total_view": 12789,
1433 | "author": {
1434 | "name": "Selina Hossain",
1435 | "published_date": "2025-04-22T20:15:00.000Z",
1436 | "img": "https://randomuser.me/api/portraits/women/41.jpg"
1437 | },
1438 | "thumbnail_url": "https://outspoken.newagebd.com/files/img/202412/287038b576057a48267828ae5991b507.jpg",
1439 | "image_url": "https://outspoken.newagebd.com/files/img/202412/287038b576057a48267828ae5991b507.jpg",
1440 | "details": "The major political parties in Bangladesh have officially announced their preparations and strategies for the upcoming local government elections. Nomination processes are underway, and rallies and campaign events are expected to intensify in the coming weeks. The local elections are seen as a significant indicator of the political climate and public sentiment at the grassroots level. Analysts predict a closely contested election in several key constituencies. The Election Commission is outlining the schedule and guidelines for the polls, emphasizing the importance of a free and fair electoral process. The focus is on local issues and candidates, as parties aim to mobilize their support base and secure victories in these crucial local races.",
1441 | "tags": [
1442 | "politics",
1443 | "elections",
1444 | "local government",
1445 | "political parties",
1446 | "Bangladesh"
1447 | ],
1448 | "others": {
1449 | "is_today_pick": true,
1450 | "is_trending": true
1451 | },
1452 | "production": true
1453 | },
1454 | {
1455 | "id": "cdefab1p723456901cdefab1p7234",
1456 | "category_id": 8,
1457 | "title": "Government Unveils New Economic Policy Initiatives to Boost Growth",
1458 | "rating": {
1459 | "number": 4,
1460 | "badge": "trending"
1461 | },
1462 | "total_view": 9567,
1463 | "author": {
1464 | "name": "Atiur Rahman",
1465 | "published_date": "2025-04-22T20:00:00.000Z",
1466 | "img": "https://randomuser.me/api/portraits/men/72.jpg"
1467 | },
1468 | "thumbnail_url": "https://www.livemint.com/lm-img/img/2024/02/19/600x338/entrepreneur-ga9d703d18_1920_1639462099902_1708343550420_1708343558793.jpg",
1469 | "image_url": "https://www.livemint.com/lm-img/img/2024/02/19/600x338/entrepreneur-ga9d703d18_1920_1639462099902_1708343550420_1708343558793.jpg",
1470 | "details": "The government of Bangladesh has announced a set of new economic policy initiatives aimed at accelerating economic growth and attracting further investment. The measures include tax incentives for specific sectors, streamlining of business regulations, and increased spending on infrastructure development projects. The government hopes these policies will create more job opportunities, boost industrial production, and enhance the country's overall economic competitiveness. Business leaders and economists are offering their perspectives on the potential impact of these initiatives, with many expressing cautious optimism. The implementation and effectiveness of these policies will be closely monitored in the coming months as the government seeks to achieve its economic targets.",
1471 | "tags": [
1472 | "politics",
1473 | "economy",
1474 | "government policy",
1475 | "growth",
1476 | "investment"
1477 | ],
1478 | "others": {
1479 | "is_today_pick": true,
1480 | "is_trending": true
1481 | },
1482 | "production": true
1483 | },
1484 | {
1485 | "id": "defabc7p123450123defabc7p12345",
1486 | "category_id": 8,
1487 | "title": "Opposition Parties Stage Protest Rally Demanding Electoral Reforms",
1488 | "rating": {
1489 | "number": 3,
1490 | "badge": "trending"
1491 | },
1492 | "total_view": 8234,
1493 | "author": {
1494 | "name": "Ruhul Kabir Rizvi",
1495 | "published_date": "2025-04-22T19:45:00.000Z",
1496 | "img": "https://randomuser.me/api/portraits/men/19.jpg"
1497 | },
1498 | "thumbnail_url": "https://www.aljazeera.com/wp-content/uploads/2022/12/AP22344433481829.jpg?resize=1920%2C1440",
1499 | "image_url": "https://www.aljazeera.com/wp-content/uploads/2022/12/AP22344433481829.jpg?resize=1920%2C1440",
1500 | "details": "A coalition of opposition political parties in Bangladesh has organized a large-scale protest rally in the capital city, demanding comprehensive reforms to the electoral system. The parties are calling for greater transparency and accountability in the election process to ensure free and fair polls in the future. The rally drew a significant number of supporters, and leaders addressed the crowd, outlining their demands for specific changes to the electoral laws and the role of the Election Commission. Security measures were heightened in the city to maintain order during the demonstration. The government has acknowledged the opposition's concerns and indicated a willingness to engage in discussions, although the extent and nature of potential reforms remain to be seen.",
1501 | "tags": [
1502 | "politics",
1503 | "protest",
1504 | "electoral reforms",
1505 | "opposition",
1506 | "Bangladesh"
1507 | ],
1508 | "others": {
1509 | "is_today_pick": false,
1510 | "is_trending": true
1511 | },
1512 | "production": true
1513 | },
1514 | {
1515 | "id": "012345q7abcdef89012345q7ab",
1516 | "category_id": 9,
1517 | "title": "Heavy Rainfall Causes Waterlogging in Several Chittagong Areas",
1518 | "rating": {
1519 | "number": 3,
1520 | "badge": "trending"
1521 | },
1522 | "total_view": 6789,
1523 | "author": {
1524 | "name": "Anika Tabassum",
1525 | "published_date": "2025-04-22T21:00:00.000Z",
1526 | "img": "https://randomuser.me/api/portraits/women/18.jpg"
1527 | },
1528 | "thumbnail_url": "https://ecdn.dhakatribune.net/contents/cache/images/900x0x1/uploads/dten/2018/07/web-chittagong-waterlogging-muradpur-2-focus-bangla-24-07-2018-1532442175533.jpg",
1529 | "image_url": "https://ecdn.dhakatribune.net/contents/cache/images/900x0x1/uploads/dten/2018/07/web-chittagong-waterlogging-muradpur-2-focus-bangla-24-07-2018-1532442175533.jpg",
1530 | "details": "Continuous heavy rainfall has led to significant waterlogging in several low-lying areas of Chittagong. Commuters are facing difficulties as roads become submerged, and residents in affected areas are experiencing disruptions to their daily lives. City authorities are working to pump out the water and provide assistance to those stranded. The meteorological department has forecasted more rainfall in the coming hours, raising concerns about further water accumulation. Residents in vulnerable areas are advised to take necessary precautions and stay updated on weather advisories. Traffic movement in the affected zones has been slow, and authorities are urging people to avoid unnecessary travel.",
1531 | "tags": ["local news", "Chittagong", "weather", "rainfall", "waterlogging"],
1532 | "others": {
1533 | "is_today_pick": true,
1534 | "is_trending": true
1535 | },
1536 | "production": true
1537 | },
1538 | {
1539 | "id": "efabcd1p723456012efabcd1p723456",
1540 | "category_id": 8,
1541 | "title": "Diplomatic Efforts Underway to Resolve Bilateral Issues with Neighboring Country",
1542 | "rating": {
1543 | "number": 4,
1544 | "badge": "trending"
1545 | },
1546 | "total_view": 7654,
1547 | "author": {
1548 | "name": "Shahriar Alam",
1549 | "published_date": "2025-04-22T19:30:00.000Z",
1550 | "img": "https://randomuser.me/api/portraits/men/81.jpg"
1551 | },
1552 | "thumbnail_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/media/2025/04/04/Yunus-Bimstec-aebb45ceb40168232e988c7641e47524.jpg?jadewits_media_id=42158",
1553 | "image_url": "https://ecdn.dhakatribune.net/contents/cache/images/640x359x1/uploads/media/2025/04/04/Yunus-Bimstec-aebb45ceb40168232e988c7641e47524.jpg?jadewits_media_id=42158",
1554 | "details": "Intensive diplomatic efforts are currently underway between Bangladesh and a neighboring country to address and resolve several outstanding bilateral issues. High-level delegations from both nations are engaged in discussions covering a range of topics, including border management, water sharing, and trade relations. The aim of these diplomatic initiatives is to strengthen ties between the two countries and find mutually agreeable solutions to long-standing challenges. Progress reports from the ongoing talks suggest a commitment from both sides to fostering a more cooperative and productive relationship. The outcomes of these diplomatic engagements are being closely monitored, as they have significant implications for regional stability and economic cooperation.",
1555 | "tags": [
1556 | "politics",
1557 | "diplomacy",
1558 | "international relations",
1559 | "bilateral issues",
1560 | "Bangladesh"
1561 | ],
1562 | "others": {
1563 | "is_today_pick": true,
1564 | "is_trending": true
1565 | },
1566 | "production": true
1567 | }
1568 | ]
1569 |
--------------------------------------------------------------------------------
/design/auth-layout-login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/design/auth-layout-login.png
--------------------------------------------------------------------------------
/design/auth-layout-register.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/design/auth-layout-register.png
--------------------------------------------------------------------------------
/design/home-layout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/design/home-layout.png
--------------------------------------------------------------------------------
/design/news-details-layout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ProgrammingHero1/dragon-news-resources/f4f0cedff076b2000493de44551b05f3b69ca66e/design/news-details-layout.png
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | #
2 |
3 | Dragoon News is a responsive front-end web application build with react that delivers real-time news articles on a variety of topics, complete with user authentication for personalized access. Built with modern web technologies, the app ensures a seamless user experience across devices and secure login functionality using firebase authentication.let's build the project together. 😎
4 |
5 | ### Base URL
6 |
7 | The base URL for the API is:
8 | [https://openapi.programming-hero.com/api](https://openapi.programming-hero.com/api)
9 |
10 | ### Endpoints
11 |
12 | 1. **Get All News Categories**
13 |
14 | - **URL**: `/news/categories`
15 | - **Full URL**: https://openapi.programming-hero.com/api/news/categories
16 | - **Method**: `GET`
17 | - **Description**: Retrieves a list of all available news categories.
18 |
19 | 2. **Get All News in a Category**
20 |
21 | - **URL Format**: `/news/category/{category_id}`
22 | - **Full URL Example**: https://openapi.programming-hero.com/api/news/category/01
23 | - **Method**: `GET`
24 | - **Description**: Retrieves all news articles within a specified category.
25 | - **Path Parameter**:
26 | - `category_id` (string): The unique ID of the category.
27 |
28 | 3. **Get News Detail by ID**
29 | - **URL Format**: `/news/{news_id}`
30 | - **Full URL Example**: https://openapi.programming-hero.com/api/news/0282e0e58a5c404fbd15261f11c2ab6a
31 | - **Method**: `GET`
32 | - **Description**: Retrieves detailed information about a specific news article.
33 | - **Path Parameter**:
34 | - `news_id` (string): The unique ID of the news article.
35 |
36 | ## Layouts & Design
37 |
38 | There will be three layour for the project. watch below designs to understand layout structure/
39 |
40 | ### News Layout
41 |
42 |
43 |
44 | ### News-Details Layout
45 |
46 |
47 |
48 | ### Auth Layout
49 |
50 |
![]() |
53 | ![]() |
54 |