-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.ts
More file actions
761 lines (759 loc) · 21.4 KB
/
data.ts
File metadata and controls
761 lines (759 loc) · 21.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
export const old = [
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Alok Pawar",
"post_type": "question",
"likes": 1300,
"text": "What a beautiful day",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "random string",
"likes": 10,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "John Smith",
"post_type": "marketing",
"likes": 850,
"text": "Check out our new product line!",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Jane Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Looks amazing!",
"likes": 5,
},
{
"username": "Mike Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I'm interested. Can I get a discount?",
"likes": 7,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Emily Davis",
"post_type": "question",
"likes": 620,
"text": "Any recommendations for a good book to read?",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Sarah Wilson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I suggest reading 'The Alchemist' by Paulo Coelho.",
"likes": 12,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Mark Thompson",
"post_type": "question",
"likes": 980,
"text": "What's your favorite travel destination?",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Lisa Anderson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love Bali, Indonesia!",
"likes": 20,
},
{
"username": "David Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "For me, it's Paris, France.",
"likes": 15,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Sophia Roberts",
"post_type": "marketing",
"likes": 720,
"text": "Don't miss out on our limited-time sale!",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Michael Davis",
"user_image": "https://i.pravatar.cc/700",
"comment": "Great deals! Thanks for sharing.",
"likes": 8,
},
{
"username": "Jessica Brown",
"user_image": "https://i.pravatar.cc/700",
"comment": "I'll definitely check it out.",
"likes": 6,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Daniel Wilson",
"post_type": "question",
"likes": 530,
"text": "Any recommendations for a good restaurant in town?",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Emma Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I highly recommend 'The Steak House'.",
"likes": 14,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Oliver Green",
"post_type": "marketing",
"likes": 450,
"text": "Introducing our latest gadget - the XYZ Smartwatch!",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Sophie Anderson",
"user_image": "https://i.pravatar.cc/700",
"comment": "Looks stylish and innovative!",
"likes": 9,
},
{
"username": "Ethan Wilson",
"user_image": "https://i.pravatar.cc/700",
"comment": "What's the battery life like?",
"likes": 6,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Grace Thompson",
"post_type": "question",
"likes": 720,
"text": "What's your favorite movie genre?",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Samuel Davis",
"user_image": "https://i.pravatar.cc/700",
"comment": "I enjoy action movies.",
"likes": 13,
},
{
"username": "Emily Wilson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I'm a fan of romantic comedies.",
"likes": 11,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Benjamin Wilson",
"post_type": "question",
"likes": 960,
"text": "What's your favorite hobby?",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Sophia Anderson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love painting!",
"likes": 18,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Lucas Smith",
"post_type": "marketing",
"likes": 550,
"text": "Don't miss our exclusive summer sale!",
"attachments": [
{
"type": "image",
"url": "image_url",
},
{
"type": "audio",
"url": "audio_url",
},
],
"comments": [
{
"username": "Olivia Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "Can't wait to grab some deals!",
"likes": 7,
},
{
"username": "Mason Anderson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I'll spread the word!",
"likes": 5,
},
],
},
];
export const old2 = [
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Elena Jones",
"post_type": "Question",
"likes": 1300,
"text": "What a beautiful day",
"attachment_type": "image",
"attachments": [
"https://images.unsplash.com/photo-1687579520892-5160c0df4b3a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHw4fHx8ZW58MHx8fHx8&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687166783902-45947281f59d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwzfHx8ZW58MHx8fHx8&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687565021770-cdb4e32002a7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwxM3x8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "random string",
"likes": 10,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Maxwell Smith",
"post_type": "Marketing",
"likes": 783,
"text": "What an amazing offer!",
"attachment_type": "audio",
"attachments": [
"https://example.com/audio1.mp3",
"https://example.com/audio2.mp3",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Great post!",
"likes": 20,
},
{
"username": "Jane Smith",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love it!",
"likes": 15,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Sophia Brown",
"post_type": "Question",
"likes": 950,
"text": "Any recommendations for a good book?",
"attachment_type": "video",
"attachments": [
"https://example.com/video1.mp4",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Check out 'The Alchemist' by Paulo Coelho!",
"likes": 8,
},
{
"username": "Emily Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I suggest 'To Kill a Mockingbird' by Harper Lee.",
"likes": 12,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Liam Davis",
"post_type": "Marketing",
"likes": 421,
"text": "Limited time offer! Get 50% off.",
"attachment_type": "image",
"attachments": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg",
],
"comments": [],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Ava Wilson",
"post_type": "Question",
"likes": 1100,
"text": "What's your favorite holiday destination?",
"attachment_type": "audio",
"attachments": [
"https://example.com/audio1.mp3",
"https://example.com/audio2.mp3",
"https://example.com/audio3.mp3",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love visiting Bali!",
"likes": 14,
},
{
"username": "Sarah Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "My favorite is Paris!",
"likes": 18,
},
{
"username": "Michael Smith",
"user_image": "https://i.pravatar.cc/700",
"comment": "I enjoy exploring Tokyo.",
"likes": 6,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Olivia Thomas",
"post_type": "Marketing",
"likes": 675,
"text": "New product alert! Check it out.",
"attachment_type": "video",
"attachments": [
"https://example.com/video1.mp4",
"https://example.com/video2.mp4",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Looks interesting!",
"likes": 11,
},
{
"username": "Emma Davis",
"user_image": "https://i.pravatar.cc/700",
"comment": "Can't wait to try it!",
"likes": 9,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Noah Wilson",
"post_type": "Question",
"likes": 230,
"text": "What's your favorite movie of all time?",
"attachment_type": "image",
"attachments": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg",
"https://example.com/image3.jpg",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love 'The Shawshank Redemption'!",
"likes": 16,
},
{
"username": "Sophia Brown",
"user_image": "https://i.pravatar.cc/700",
"comment": "My favorite is 'Inception'.",
"likes": 13,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "William Thompson",
"post_type": "Marketing",
"likes": 512,
"text": "Big sale! Don't miss out.",
"attachment_type": "audio",
"attachments": [
"https://example.com/audio1.mp3",
"https://example.com/audio2.mp3",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Great deals!",
"likes": 7,
},
{
"username": "Emma Wilson",
"user_image": "https://i.pravatar.cc/700",
"comment": "I'll definitely check it out.",
"likes": 5,
},
],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Isabella Davis",
"post_type": "Question",
"likes": 890,
"text": "Looking for new restaurant recommendations.",
"attachment_type": "video",
"attachments": [
"https://example.com/video1.mp4",
"https://example.com/video2.mp4",
"https://example.com/video3.mp4",
],
"comments": [],
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "James Wilson",
"post_type": "Marketing",
"likes": 310,
"text": "Introducing our latest product.",
"attachment_type": "image",
"attachments": [
"https://images.unsplash.com/photo-1687084626949-93a5e1555fcf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwxNXx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687320565719-dfa288b1e7bb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwyNXx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687447156365-d9eae3902596?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwzMHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Looks cool!",
"likes": 4,
},
],
},
];
export const data = [
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Elena Jones",
"post_type": "Question",
"likes": 1300,
"text":
"What a beautiful day it is today! The sun is shining, birds are chirping, and the flowers are blooming. I'm feeling so grateful for this wonderful weather.",
"attachment_type": "image",
"attachments": [
"https://images.unsplash.com/photo-1687579520892-5160c0df4b3a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHw4fHx8ZW58MHx8fHx8&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687166783902-45947281f59d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwzfHx8ZW58MHx8fHx8&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687565021770-cdb4e32002a7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwxM3x8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "random string",
"likes": 10,
},
],
"postedOn": "2 hours ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Maxwell Smith",
"post_type": "Marketing",
"likes": 783,
"text":
"Check out our latest marketing campaign! We have exciting offers and discounts for you. Don't miss out on these amazing deals. Visit our website for more details.",
"attachment_type": "image",
"attachments": [
"https://images.unsplash.com/photo-1536395653943-12ed8526f026?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDJ8eEh4WVRNSExnT2N8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Great post!",
"likes": 20,
},
{
"username": "Jane Smith",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love it!",
"likes": 15,
},
],
"postedOn": "12 Mar 2020",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Sophia Brown",
"post_type": "Question",
"likes": 950,
"text":
"I need some book recommendations for my summer reading list. I enjoy a mix of mystery, romance, and fantasy genres. Any suggestions?",
"attachment_type": "video",
"attachments": [
"https://example.com/video1.mp4",
"https://example.com/video2.mp4",
],
"comments": [],
"postedOn": "2 days ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Oliver Johnson",
"post_type": "Marketing",
"likes": 412,
"text":
"Huge clearance sale happening now! Get up to 70% off on selected items. Don't miss this opportunity to grab some incredible deals.",
"attachment_type": "image",
"attachments": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I've already started shopping!",
"likes": 9,
},
{
"username": "Emma Wilson",
"user_image": "https://i.pravatar.cc/700",
"comment": "Thanks for the heads up!",
"likes": 7,
},
],
"postedOn": "1 week ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Mia Davis",
"post_type": "Question",
"likes": 230,
"text":
"What's your favorite TV show or series? I'm looking for some recommendations to binge-watch during the weekend.",
"attachment_type": "image",
"attachments": [
"https://images.unsplash.com/photo-1687383023903-a1196a5ffd90?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDZ8eEh4WVRNSExnT2N8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
"https://images.unsplash.com/photo-1687120327990-058e7a62d525?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDR8Ym84alFLVGFFMFl8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I highly recommend 'Stranger Things'!",
"likes": 12,
},
{
"username": "Sarah Johnson",
"user_image": "https://i.pravatar.cc/700",
"comment": "You should watch 'Breaking Bad'. It's amazing!",
"likes": 8,
},
],
"postedOn": "3 hours ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Lucas Thompson",
"post_type": "Marketing",
"likes": 645,
"text":
"New arrivals just landed! Explore our latest collection and stay trendy. We have something for everyone. Shop now and upgrade your wardrobe.",
"attachment_type": "video",
"attachments": [
"https://example.com/video1.mp4",
"https://example.com/video2.mp4",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I can't wait to see the new collection!",
"likes": 14,
},
{
"username": "Emma Davis",
"user_image": "https://i.pravatar.cc/700",
"comment": "The videos look fantastic!",
"likes": 10,
},
],
"postedOn": "4 months ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Henry Wilson",
"post_type": "Question",
"likes": 860,
"text":
"I'm planning a trip to Europe and would love some travel recommendations. Which cities or countries would you suggest visiting?",
"attachment_type": "image",
"attachments": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg",
"https://example.com/image3.jpg",
],
"comments": [],
"postedOn": "1 month ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Emily Anderson",
"post_type": "Marketing",
"likes": 320,
"text":
"Exciting news! We're launching a new product next week. Stay tuned for updates and be the first to get your hands on it.",
"attachment_type": "audio",
"attachments": [
"https://example.com/audio1.mp3",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "Can't wait for the launch!",
"likes": 5,
},
],
"postedOn": "1 day ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Charlotte Taylor",
"post_type": "Question",
"likes": 540,
"text":
"What's your favorite recipe? I'm in the mood for trying something new in the kitchen.",
"attachment_type": "video",
"attachments": [
"https://example.com/video1.mp4",
"https://example.com/video2.mp4",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love making homemade pizza!",
"likes": 6,
},
{
"username": "Emma Wilson",
"user_image": "https://i.pravatar.cc/700",
"comment": "You should try making chocolate lava cake. It's delicious!",
"likes": 4,
},
],
"postedOn": "6 days ago",
},
{
"author_image": "https://i.pravatar.cc/700",
"author_name": "Daniel Johnson",
"post_type": "Marketing",
"likes": 120,
"text":
"Limited-time offer! Get a free gift with every purchase. Hurry up and shop now before it's too late.",
"attachment_type": "image",
"attachments": [
"https://images.unsplash.com/photo-1680320565397-10686d915f64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDN8Ym84alFLVGFFMFl8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=60",
],
"comments": [
{
"username": "John Doe",
"user_image": "https://i.pravatar.cc/700",
"comment": "I love free gifts!",
"likes": 3,
},
],
"postedOn": "5 hours ago",
},
];