-
Notifications
You must be signed in to change notification settings - Fork 0
/
quotes.json
11885 lines (11885 loc) · 916 KB
/
quotes.json
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"quotes": [
{
"text": "\n \"With callused handsi tastedthe softness of the moonin the coldest windsi discoveredmy soul's warmest fireplacein the roughnessof his stubblethe tenderest love.\"\n ―\n Sanober Khan,\n \n A Thousand Flamingos\n \n \n\n \n\n\n\n\n\n",
"id": "ae440470-283a-46b6-9b3a-48c25477387e"
},
{
"text": "\n \"In a word, it was impossible for me to separate her, in the past or in the present, from the innermost life of my life.\"\n ―\n Charles Dickens,\n \n Great Expectations\n \n \n\n\n\n\n",
"id": "425c69b7-d2e2-4bd0-a6a5-3ad377650c40"
},
{
"text": "\n \"People who think love can happen twice, actually never fell in it the first time.\"\n ―\n Syed Arshad,\n \n If It's Not Love\n \n \n\n\n\n\n",
"id": "a1faaaeb-fb3e-4f9b-9f17-fbf7e94ff14f"
},
{
"text": "\n \"Then, by your definition... I'm in love with you.\"\n ―\n Angela N. Blount,\n \n Once Upon a Road Trip\n \n \n\n\n\n\n",
"id": "0dccd72d-afe5-4fba-a283-941c083310f3"
},
{
"text": "\n \"Love is relentless, and so am I ;)\"\n ―\n Keisha Keenleyside\n",
"id": "b01c7649-f12b-4144-a184-816f130f0037"
},
{
"text": "\n \"An angel for some,a demon for some,for me, it’s heart of the one.Never want to hurt,keep many secrets beneath the blood.sob in the dark,but, people thinks, it’s beat of the heart.No one thought, no one observe,but, it supplies tears as blood.One day someone came,took it out from dark,she kissed it,loved it,played with it,put it with her heart,and makes it her life part.Daily she played,daily she fought,But, never she threw it out.one day, an unknown came,who kissed her,loved her,and used to play with her.He took my out my heart from her,and threw it on the street,then there is nothing more than weep.An angel for some,a demon for some,for me, it’s heart of the one.Never want to hurt,keep many secrets beneath the blood.Sob in the dark,but, people thinks, it’s beat of the heart.No one thought, no one observe,but, it supplies tears as blood.\"\n ―\n Abhishek Kumar Singh\n",
"id": "91f29d1c-4d50-4e0f-a8b8-c2a64cfbd88d"
},
{
"text": "\n \"I married a man who was as much a part of me as my own soul.\"\n ―\n C.J. English\n",
"id": "0d212975-5b4b-4140-b1a3-56c1b27ec424"
},
{
"text": "\n \"...Kawan, seandainya kita bisa tahu kepada siapa kita akan berjumpa lalu jatuh cinta seperti tak ada lagi hari esok, maka beruk bisa melamar pekerjaan menjadi ajudan bupati.\"\n ―\n Andrea Hirata\n",
"id": "39b6eb6a-856b-4cf4-a719-17d8054bbc45"
},
{
"text": "\n \"You keep me here. You can't live in a world where you don't know where and what I am doing. We inside each others souls.\"\n ―\n Chimnese Davids,\n \n My Unrequited Love Letters\n \n \n\n\n\n\n",
"id": "18f57d08-5d4f-4b06-b0ce-396d277f73ad"
},
{
"text": "\n \"He was changed, burned, branded, destroyed and rebuilt. And he loved it.\"\n ―\n Jess Michaels,\n \n A Moment of Passion\n \n \n\n\n\n\n",
"id": "1c009189-59bb-4227-bb75-217411223d2d"
},
{
"text": "\n \"One thing I have come to realize is that love is not always happiness.\"\n ―\n Jerhia\n",
"id": "3bd8c610-1358-4743-ae94-416e1e54b950"
},
{
"text": "\n \"Love, deep and pure, it opens my heart. It feels like a magical force, one I’d fight to protect, one I’d die to keep.\"\n ―\n Sarah Noffke,\n \n Stunned\n \n \n\n\n\n\n",
"id": "4736e2e4-5635-4bfb-ac3d-854f891e7b6e"
},
{
"text": "\n \"Love begins when two souls meet together. A soul attracted by another soul. They feel like bind by each other. It’s a powerful addiction. It’s truly said, first love is last love. But it does not said anywhere to stop love if you betrayed by your lover.\"\n ―\n Kusum Manjeshri\n",
"id": "295f6d34-d313-4a89-a7da-de4693861180"
},
{
"text": "\n \"The Earth must have done some noble work; that is why you were born here and not in the ocean among the fishes and not in the sky among the birds.\"\n ―\n Amit Kalantri,\n \n I Love You Too\n \n \n\n\n\n\n",
"id": "f5ab83d9-3ac7-4653-9102-507156a21070"
},
{
"text": "\n \"Without the wetness of your love, the fragrance of your water, or the trickling sounds of your voice ― I shall always feel thirsty.\"\n ―\n Suzy Kassem,\n \n Rise Up and Salute the Sun: The Writings of Suzy Kassem\n \n \n\n\n\n\n",
"id": "48c21546-e447-4db1-a6f5-6500cd4d4289"
},
{
"text": "\n \"Making You Happy; Makes Me Happy.\"\n ―\n Dhiren Prajapati\n",
"id": "e2f1d74c-db66-4814-a963-bc07e3eeaf5c"
},
{
"text": "\n \"Love in the rain is better than hate in the sunshine.\"\n ―\n Matshona Dhliwayo\n",
"id": "a1f6c6c3-5c48-40c9-a06f-ce123f5b191b"
},
{
"text": "\n \"Cinta sejati adalah perbuatan. Dengan demikian,ingat baik baik, kau selalu bisa memberi tanpa sedikitpun rasa cinta. Tetapi kau tidak akan pernah bisa mencintai tanpa selalu memberi.\"\n ―\n Tere Liye,\n \n Kau, Aku & Sepucuk Angpau Merah\n \n \n\n\n\n\n",
"id": "9b4afa68-8578-44e1-b1b9-a6173878eb85"
},
{
"text": "\n \"It takes a moment to love and be loved. Hours spent judging are a waste.\"\n ―\n Parashar Pandya,\n \n You Gotta Have Balls\n \n \n\n\n\n\n",
"id": "e6723021-b5df-4829-9f6c-f01712d9e71a"
},
{
"text": "\n \"I don't know what it is with you, but I somehow become more a woman when ever your around.\"\n ―\n Nikki Rowe\n",
"id": "2af78b2c-8832-469b-94e3-b14dd813c5dc"
},
{
"text": "\n \"Love is not an antidote of depression or loneliness, but it itself is a cause of depression and loneliness.\"\n ―\n Raj Singh,\n \n Breakup Before Love\n \n \n\n\n\n\n",
"id": "da2b056e-7bac-448e-9466-e6ff788e93f5"
},
{
"text": "\n \"You're the certainty of my uncertainty. Your significance defines the love and connection I have for you and I wanna thank you because you help me grow to become my full self and contribute meaningfully to this world we're both in.\"\n ―\n Jayson Engay\n",
"id": "ddd6cf79-1b69-4671-92b4-76ab58b5d8ac"
},
{
"text": "\n \"And so, in silence, we walked the surface of a dying world, but in the breast of one of us at least had been born that which is ever oldest, yet ever new.I loved Dejah Thoris. The touch of my arm upon her naked shoulder had spoken to me in words I would not mistake, and I knew that I had loved her since the first moment my eyes had met hers that first time in the plaza of the dead city of Korad.\"\n ―\n Edgar Rice Burroughs,\n \n A Princess of Mars\n \n \n\n\n\n\n",
"id": "a2a292bf-2447-49ac-b83f-d7c7649009d0"
},
{
"text": "\n \"No matter what you think, no matter what you say, I will love you always.\"\n ―\n Jayson Engay\n",
"id": "9d531ff2-ab5e-43e4-9618-896e7596b152"
},
{
"text": "\n \"Dispensing with the frivolity, he kissed her meaningfully. When at last he pulled away, her troubled expression alarmed him. \"What?\"\"Be careful, Hammond.\"\"No one will know I was here.\"She shook her head. \"Not that.\"\"Then what?\"\"You may have to put me on trial for my life. Please be careful that you don't make me fall in love with you first.\"\n ―\n Sandra Brown,\n \n The Alibi\n \n \n\n\n\n\n",
"id": "1cf48aa9-944f-4ad4-96a1-4d19a71e612b"
},
{
"text": "\n \"As she looks through the window; while seeing him give her his world, tears rolled down her cheeks as she remembers the world she once had.\"\n ―\n J.B.\n",
"id": "41612e8d-f33f-4b2c-bdd9-683119ddd5e2"
},
{
"text": "\n \"The world may be against us, but this love we have is enough to put this world beneath us.\"\n ―\n Jayson Engay\n",
"id": "15e2d3a2-5d2e-4712-8e75-d3bcd2082a11"
},
{
"text": "\n \"It wasn't exactly love at first sight, but it was deeper than that. A sense of belonging to a place I never knew I wanted but somehow always needed. It was a home that carried a heartbeat.\"\n ―\n Nikki Rowe\n",
"id": "310f5e6c-7430-47b4-9975-57eceea0cfec"
},
{
"text": "\n \"An ocean of shimmering love exists in your heart. Tap into it today and rest in the undulating currents of the great mystery.\"\n ―\n Amy Leigh Mercree\n",
"id": "f5b3789f-c4b2-400f-9f1e-dc45cea0eab6"
},
{
"text": "\n \"Until you experience real loneliness, you shall never know what real loneliness is. So many people feel miserable and lonely just because they ignore their inner man, create a gap between themselves and their inner man, and neglect their true self!\"\n ―\n Ernest Agyemang Yeboah\n",
"id": "50b44811-f242-476b-b675-2c19915372af"
},
{
"text": "\n \"a flower knows, when its butterfly will return, and if the moon walks out, the sky will understand;but now it hurts, to watch you leave so soon,when I don't know, if you will ever come back.\"\n ―\n Sanober Khan\n",
"id": "f651d5d8-5afe-4435-bd0b-579d16999228"
},
{
"text": "\n \"In this storyI am the poetYou're the poetry.\"\n ―\n Arzum Uzun\n",
"id": "3d46768a-499d-4296-8e8e-cceb57c8773c"
},
{
"text": "\n \"i want to be in love with youthe same wayi am in love with the moonwith the lightshiningout of its soul.\"\n ―\n Sanober Khan\n",
"id": "4455d769-aba8-44a2-a444-b86a970b04a4"
},
{
"text": "\n \"You said you didn’t care what I thought. Or what I did. Or if I died, if I’m not mistaken.\"\"I lied! And you know I lied, you stupid bastard!\"\n ―\n Sarah J. Maas,\n \n The Assassin's Blade\n \n \n\n \n\n\n\n\n\n",
"id": "0bc9c5c8-b51b-4085-b48f-4e90deaccc8d"
},
{
"text": "\n \"To me, you were more than just a person. You were a place where I finally felt at home.\"\n ―\n Denice Envall\n",
"id": "2b71728e-a584-4652-a303-4d9ab2d17ff7"
},
{
"text": "\n \"Not words. nor laughter. but rather someonewho will fall in lovewith your silence.\"\n ―\n Sanober Khan\n",
"id": "7ec75f4d-5674-49a4-ae26-f03940c02dc5"
},
{
"text": "\n \"The absence of a message sometimes is a presence of one.\"\n ―\n Hasse Jerner\n",
"id": "c0784bf7-5dd3-476f-9daf-72dd826f324b"
},
{
"text": "\n \"sometimes i don't know, which momentwhich cool gust of wind will come,and enchant metousling my hairand my heart, stirring...that familiar ache of poetry, which drop will kissthe old wrench in my soulreminding me, all over againi miss you better in the rain.\"\n ―\n Sanober Khan,\n \n A Thousand Flamingos\n \n \n\n\n\n\n",
"id": "4ef6f759-b8d5-4629-9f7e-21f6fbe991d4"
},
{
"text": "\n \"When you start giving, instead of getting, you make a difference. You can always give a warm smile, a sincere hello, a positive vibe… your attention, your time, your love, and kindness to those around you.\"\n ―\n Roy T. Bennett\n",
"id": "c7c88d5d-cfd3-4463-af35-7a4fd1383031"
},
{
"text": "\n \"Some people come in your life and make you believe that your life is incomplete without them. Then they leave, creating a void in your heart that may fill back with time but will never be complete.\"\n ―\n Anmol Rawat,\n \n A Little Chorus of Love\n \n \n\n\n\n\n",
"id": "f81de1d8-ba74-460c-a01f-969478d30404"
},
{
"text": "\n \"You can run from the truth. You can run and hide from the truth.You can deny and avoid the truth. But you cannot destroy the truth. Nor can you make the lie true. You must know that love will always uncover the truth.\"\n ―\n Delano Johnson,\n \n Love Quotes\n \n \n\n\n\n\n",
"id": "e1d73379-7db3-4cbb-bccf-118b00905609"
},
{
"text": "\n \"You want to be free. You also want to be mine. You can't be both.\"\n ―\n Nenia Campbell,\n \n Crowned by Fire\n \n \n\n\n\n\n",
"id": "720dc8ee-078a-4163-a8cd-039e7aad9704"
},
{
"text": "\n \"...so i will greet youin a wayall loved thingsare meant to be greetedwith a tear in my heartand a poem in my eye.\"\n ―\n Sanober Khan,\n \n Turquoise Silence\n \n \n\n\n\n\n",
"id": "699048fc-7ea2-4df0-8315-110cbba2a9e8"
},
{
"text": "\n \"Even before we met and long after we're both gone, my heart lives inside of yours. I'm forever and ever in love with you.\"\n ―\n Crystal Woods,\n \n Write like no one is reading 2\n \n \n\n\n\n\n",
"id": "9f6073cd-b213-4e19-840f-f98a0e19ac74"
},
{
"text": "\n \"Because, wherever your heart is, that is where you´ll find your treasure\" - The Alchemist, Paulo Cohelo -\"\n ―\n Paulo Cohelo\n",
"id": "963a2dde-1491-4eee-9e50-d4f112623842"
},
{
"text": "\n \"There is nothing right or wrong in love. Where there is love, then there is nothing but only love.\"\n ―\n Sara Naveed,\n \n Undying Affinity\n \n \n\n\n\n\n",
"id": "703e8597-4150-417d-ae04-cbc0f7077285"
},
{
"text": "\n \"ليس الحـب فقط هـو مايجعلنا سعداء , فالذكريات مع أحد الآصدقاء ترسم بسمه من نـوع خاص\"\n ―\n فارس أحمد طه,\n \n حنين\n \n \n\n\n\n\n",
"id": "2e16ee3e-f5d3-48b9-a92f-845bbae37581"
},
{
"text": "\n \"You are that one breath. that puts all the remaining breaths. back into my body.\"\n ―\n Sanober Khan\n",
"id": "54af44f0-d630-4c6a-8098-33b5797d6807"
},
{
"text": "\n \"Her hands crept around his neck, tangling in his hair to keep him closer, even though she knew that beautiful boys with expiration dates couldn't be held, only borrowed for a time.\"\n ―\n Martina Boone\n",
"id": "e5e53230-35b9-443d-872e-55dd999db095"
},
{
"text": "\n \"Magic existed in his eyes, his energy as he lived his daily life. I could fall into his soul and lay my worries to rest, but if by chance this happened; it wouldn't last the test. because there's much to learn, before we can meet, I want to collide with his heart; allow our souls to fleet. His arms will hold my fears, but he won't carry the load; as it is my lesson to love myself, and find my own sense of hope. When we cross our paths, our knowledge will last the test; as patience fills the air and our burdens are put to rest, I will honour my truth, and seek what I desire; ever lasting love and passion set on fire.\"\n ―\n Nikki Rowe\n",
"id": "ff9edd6e-9a48-4cde-bfd3-d9cedbb362ab"
},
{
"text": "\n \"I’m only going say this—love is a wild creature that cannotbe tamed. It’s unconditional. And although it sometimes makes youfeel like one small person against this big old world, you must rememberyou are the world to one particular person. - Astral\"\n ―\n Candace Knoebel,\n \n Embracing the Flames\n \n \n\n\n\n\n",
"id": "8af8d7c7-316e-46f6-b904-1e716a75accd"
},
{
"text": "\n \"If you can forget the person you love, you have not loved enough.\"\n ―\n Anmol Rawat,\n \n A Little Chorus of Love\n \n \n\n\n\n\n",
"id": "f9333eb0-e75c-48a3-9725-a0eb7aea9652"
},
{
"text": "\n \"I always have many roads to travel, but I take the one which leads to you.\"\n ―\n Amit Kalantri,\n \n I Love You Too\n \n \n\n\n\n\n",
"id": "5dd1f753-ebf8-40f4-b835-02c92ca1b48b"
},
{
"text": "\n \"You can only trust your emotions as you can lie to yourself with your brain but not your heart.\"\n ―\n Carl White\n",
"id": "160ea67f-3354-4f8f-8b92-df436d3db1ff"
},
{
"text": "\n \"When you fall in love with someone you treasure their quirks as much as anything else. Flaws become unique marks of character, things you'd miss if they weren't there.\"\n ―\n Tommy Cotton,\n \n Just Went Out for Milk\n \n \n\n\n\n\n",
"id": "5fb6a695-a76c-4f96-9cb3-98ef9dc55822"
},
{
"text": "\n \"The end of love looks like the beginning of war\"\n ―\n Bangambiki Habyarimana,\n \n The Great Pearl of Wisdom\n \n \n\n\n\n\n",
"id": "53855118-e8a3-49ec-9cfe-2eebf855ecfd"
},
{
"text": "\n \"In love, treat your relationship as if you are growing the most beautiful flower. Keep watering it, tend to its roots, give it lots of sunlight, and always make sure the petals are full of color and are never curling. Once you neglect your plant, it will die, as will your relationship.\"\n ―\n Suzy Kassem,\n \n Rise Up and Salute the Sun: The Writings of Suzy Kassem\n \n \n\n\n\n\n",
"id": "cd028938-5eba-4fe0-abb1-6b6fccedb96b"
},
{
"text": "\n \"One does not seek love,' she told him, 'it should find you all on it's own\"\n ―\n Barbara Lieberman,\n \n The Treasure of Ravenwood\n \n \n\n\n\n\n",
"id": "e5ce4db8-195b-48b4-ba3b-49d560987495"
},
{
"text": "\n \"But some relationships aren't meant to last.They are worthy only till the time the two persons involved have time for each other.They do not know eternity. They live for the present, the \"now\". And when distance plays it part, or life turns out to be busy, they fall apart.And may be that's why they're never termed \"LOVE\". They simply remain what they were - mere RELATIONSHIPS.\"\n ―\n Sanhita Baruah\n",
"id": "64496f8c-1e99-46df-94fd-b9cc265d4ed3"
},
{
"text": "\n \"It’s beyond your consciousness that your soul lingers with the person you love and hence your mood will affect the one you love. This is the reason why you sometimes sense your mood changing mysteriously with no reason.\"\n ―\n Udai Yadla\n",
"id": "f5d71e94-2906-4374-9758-82bdef9ba9b2"
},
{
"text": "\n \"It is an absolute human certainty that no one can know his own beauty or perceive a sense of his own worth until it has been reflected back to him in the mirror of another loving, caring human being.\"\n ―\n John Joseph Powell,\n \n The Secret of Staying in Love\n \n \n\n \n\n\n\n\n\n",
"id": "dce2a074-1d0f-479a-84da-d5bbebbca113"
},
{
"text": "\n \"If I have learned anything in this long life of mine, it is this: in love we find out who we want to be; in war we find out who we are.\"\n ―\n Kristin Hannah,\n \n The Nightingale\n \n \n\n\n\n\n",
"id": "66f264b8-beb0-47ce-b6e8-1a874fa80814"
},
{
"text": "\n \"My heart made it's choice, and it chose you.\"\n ―\n Colleen Hoover,\n \n Maybe Someday\n \n \n\n\n\n\n",
"id": "de95521e-35fd-4864-a4c9-a330e54c0be3"
},
{
"text": "\n \"your handtouching mine.this is howgalaxiescollide.\"\n ―\n Sanober Khan\n",
"id": "90e7a5f6-d933-4d80-a425-7a085575f251"
},
{
"text": "\n \"I meant it when I said I didn’t believe in love at first sight. It takes time to really, truly fall for someone. Yet I believe in a moment. A moment when you glimpse the truth within someone, and they glimpse the truth within you. In that moment, you don’t belong to yourself any longer, not completely. Part of you belongs to him; part of him belongs to you. After that, you can’t take it back, no matter how much you want to, no matter how hard you try.\"\n ―\n Claudia Gray,\n \n A Thousand Pieces of You\n \n \n\n\n\n\n",
"id": "798b62f2-3818-4e9e-a5e8-78691bc3804d"
},
{
"text": "\n \"Get up, Shahrzad al-Khayzuran. You kneel before no one. Least of all me.\"\n ―\n Renee Ahdieh,\n \n The Wrath & the Dawn\n \n \n\n\n\n\n",
"id": "f3e992d3-ad4e-4dde-a840-fe77f22b7bd8"
},
{
"text": "\n \"That’s what it feels like when you touch me. Like millions of tiny universes being born and then dying in the space between your finger and my skin. Sometimes I forget.\"\n ―\n Iain Thomas,\n \n I Wrote This For You\n \n \n\n\n\n\n",
"id": "1708d673-9127-426f-89e1-4438201e513c"
},
{
"text": "\n \"the saddest thing is to bea minute to someone,when you've made them your eternity.\"\n ―\n Sanober Khan\n",
"id": "4b968122-c6e4-4ae9-9d38-7a2109650076"
},
{
"text": "\n \"I choose to love you in silence…For in silence I find no rejection,I choose to love you in loneliness…For in loneliness no one owns you but me,I choose to adore you from a distance…For distance will shield me from pain,I choose to kiss you in the wind…For the wind is gentler than my lips,I choose to hold you in my dreams…For in my dreams, you have no end.\"\n ―\n Jalaluddin Rumi\n",
"id": "b58eb616-9936-4753-a344-dd2de0710a3e"
},
{
"text": "\n \"For some people, \"the point of no return\" begins at the very moment their souls become aware of each others’ existence.\"\n ―\n C. JoyBell C.\n",
"id": "75179f25-dc29-4dd6-9db8-8e7cdb68a8fe"
},
{
"text": "\n \"Not only didI love her,but I could tellthe universe lovedher, too.More than others.She was different.After all; I wouldbe a fool not tonotice the way thesunshine played withher hair.\"\n ―\n Christopher Poindexter\n",
"id": "a3738915-57c3-4301-9ce8-a87d3468e26f"
},
{
"text": "\n \"Nothing is more tragic than loving someone to the depths of your soul and knowing they cannot and will not ever love you back.\"\n ―\n Rick Riordan,\n \n The Hidden Oracle\n \n \n\n\n\n\n",
"id": "6fd861a7-2b16-45ae-b01c-006236736de4"
},
{
"text": "\n \"To fall in love with someone's thoughts - the most intimate, splendid romance.\"\n ―\n Sanober Khan\n",
"id": "28ec69d6-a16e-449c-856c-babec0659515"
},
{
"text": "\n \"You fell in love with a storm. Did you really think you would get out unscathed?\"\n ―\n Nikita Gill\n",
"id": "c7798edf-a214-48c2-95c7-385ec113bd83"
},
{
"text": "\n \"I'm done. I don't need anything more out of life. I have you, and that's enough.\"\n ―\n Alessandra Torre\n",
"id": "ac4c63a2-dbb6-4aa9-8e84-0c5855bb66a5"
},
{
"text": "\n \"The truth is I do love you. Admitting that means opening myself up to all that pain when you leave. After you realize this wasn’t love, but gratitude.\"\n ―\n Kelly Moran,\n \n The Drake House\n \n \n\n\n\n\n",
"id": "6a1b021a-9fd8-496a-9d66-9cd86560dd61"
},
{
"text": "\n \"تقولين لي أنك تخافين الحب لماذا تخافينه يا صغيرتي ؟ أتخافين نور الشمس ؟أتخافين مدّ البحر ؟ أتخافين طلوع الفجر ؟ أتخافين مجيء الربيع؟لماذا يا ترى تخافين الحب ؟\"\n ―\n Kahlil Gibran,\n \n Love Letters in the Sand: The Love Poems of Khalil Gibran\n \n \n\n\n\n\n",
"id": "d87a7778-b9a9-4e66-8335-126217dfd76b"
},
{
"text": "\n \"I miss you in waves and tonight I’m drowning. You left me fending for my life and it feels like you’re the only one who can bring me back to the shore alive.\"\n ―\n Denice Envall\n",
"id": "3883f670-51f3-44ef-bf71-e8a17264b293"
},
{
"text": "\n \"I think of you only twice a day - when I am alone and when I am with someone else.\"\n ―\n Amit Kalantri,\n \n I Love You Too\n \n \n\n\n\n\n",
"id": "394f548c-d3c5-41fb-aea3-4396c41e7169"
},
{
"text": "\n \"I love you,\" he murmured into my hair. \"You are my night and stars, the fate I would fix myself to in any life.\"\n ―\n Roshani Chokshi,\n \n The Star-Touched Queen\n \n \n\n\n\n\n",
"id": "0e6654a8-4cc2-4262-9b29-e03a3f824f52"
},
{
"text": "\n \"She had a wild, wandering soul but when she loved, she loved with chaos and that made all the difference.\"\n ―\n Ariana Dancu\n",
"id": "28539c84-3616-4e97-8c87-83b9a5e5b62e"
},
{
"text": "\n \"Love is the most beautiful of dreams and the worst of nightmares.\"\n ―\n Aman Jassal,\n \n Rainbow - the shades of love\n \n \n\n\n\n\n",
"id": "04fcdafb-7d6e-40f3-b9c5-fb3ef74d2b83"
},
{
"text": "\n \"And I fear that my place gets taken by some other one, very lucky and not too shy, who flirts with your eyes while I’m the one who’s crazy about them.\"\n ―\n Nizar Qabbani\n",
"id": "e26fb06b-ac75-436f-b6af-fc3abaa9f378"
},
{
"text": "\n \"I wanted a love thick with time, as inscrutable as if a lathe had carved it from night and as familiar as the marrow in my bones. I wanted the impossible, which made it that much easier to push out of my mind.\"\n ―\n Roshani Chokshi,\n \n The Star-Touched Queen\n \n \n\n\n\n\n",
"id": "0a73a6fa-6722-45bb-acc0-13af9868697c"
},
{
"text": "\n \"I think it's hard for you to fall in love because you like control, and you can't control what another person does or feels, so you keep all your cards.\"\n ―\n Tarryn Fisher,\n \n F*ck Love\n \n \n\n\n\n\n",
"id": "3c4f0284-c357-4c5c-a2e1-b3a1f125d154"
},
{
"text": "\n \"the intensityin your eyesburns my penas i write.\"\n ―\n Sanober Khan,\n \n A touch, a tear, a tempest\n \n \n\n\n\n\n",
"id": "c8ac946c-b3c2-423f-a72a-e5484b84a8e6"
},
{
"text": "\n \"When it comes to lovedo not eversettle for anythingless than magical.\"\n ―\n Sanober Khan\n",
"id": "8f64c837-5f6f-4e1d-a011-51b38379f967"
},
{
"text": "\n \"My love is meatloaf flavored. I just wish my meatloaf was also meatloaf flavored.\"\n ―\n Dora J. Arod,\n \n Love quotes for the ages. And the ageless sages.\n \n \n\n\n\n\n",
"id": "8a02aa57-26ce-45ba-9088-fcd386690b2d"
},
{
"text": "\n \"You can't buy the love you want, you can't sell your love. Love is given by those who deserves it.\"\n ―\n Jayson Engay\n",
"id": "6a488fa6-5037-46eb-b21b-036ed006d547"
},
{
"text": "\n \"It was easy to be good and kind in times of plenty. The trying times were the moments that defined a man.And love? Love was something that did much to change a person. It brought joy as it brought suffering, and in turn brought about those moments that defined one’s character. Love gave life to the lifeless. It was the greatest of all living powers.But, as with all things, love had a dark side to it.\"\n ―\n Renee Ahdieh,\n \n The Rose & the Dagger\n \n \n\n\n\n\n",
"id": "2efa5b0f-0237-4a2e-8170-9a9f0b59f926"
},
{
"text": "\n \"I had embraced you...long before i hugged you.\"\n ―\n Sanober Khan,\n \n A Thousand Flamingos\n \n \n\n \n\n\n\n\n\n",
"id": "5d4c9385-374a-4222-8973-a9b8824c290d"
},
{
"text": "\n \"the onewho will jolt awakeall the unwrittenthe unsungand the unlived in me. i am waitingfor him.\"\n ―\n Sanober Khan\n",
"id": "6e2875d5-3db2-4971-906b-76cf8cb5c564"
},
{
"text": "\n \"i writebecauseit is the only wayi can reach you.\"\n ―\n Sanober Khan\n",
"id": "c92fda49-d326-4710-a4af-f3e74f62c165"
},
{
"text": "\n \"i'm glad to be alive in a world wherehis gently awakening eyesnourish the morning sun.\"\n ―\n Sanober Khan,\n \n Turquoise Silence\n \n \n\n\n\n\n",
"id": "522bdc05-d727-4732-a95b-0497e2e89c98"
},
{
"text": "\n \"When I look into your eyes I see everything I want in this world and that is never going to change.\"\n ―\n Stephen F. Campbell\n",
"id": "4a746238-af27-4954-81b8-f43bf00a7876"
},
{
"text": "\n \"be the kiss in my hairthat no one seesmove, when i movesigh, when i sigh...be that line from a poemthat i hold in my eyes.\"\n ―\n Sanober Khan\n",
"id": "6c2895e8-e7e4-4066-ac27-6efdcb63cc4e"
},
{
"text": "\n \"stronger than mountains.a place where my heart feels the safest- underneath his shirt.\"\n ―\n Sanober Khan\n",
"id": "be591727-6169-41a7-9f96-9fee58009b43"
},
{
"text": "\n \"I breathe in...the fragranceof love, and moist sandthe onehis roses lefton both my handsI just keep on breathingevery momentas much as I canpreserving it, in my bodyfor the dayit can’t.\"\n ―\n Sanober Khan,\n \n A touch, a tear, a tempest\n \n \n\n\n\n\n",
"id": "4444fab0-27b3-492b-818a-fc1e79a966a3"
},
{
"text": "\n \"i immersemyselfin youlikei immerse myselfinto a beautiful story.\"\n ―\n Sanober Khan\n",
"id": "15bac6c6-9f2a-4604-a09e-0c3945be5d72"
},
{
"text": "\n \"and the afterglow...of your gaze...is the onlysweater that I need.\"\n ―\n Sanober Khan,\n \n Turquoise Silence\n \n \n\n\n\n\n",
"id": "0f9c50a2-313b-4bcd-b235-a5ff7761fc8c"
},
{
"text": "\n \"If you don't love yourself, you won't be happy with yourself. If you can't love yourself, you can't love anyone else. You can't give the love you do not have. You can't make anyone love you without loving yourself first.\"\n ―\n Kemi Sogunle\n",
"id": "c660de32-2f92-4379-99ba-02fa8c9ef1b5"
},
{
"text": "\n \"Tell me..how do you stand there?filling the doorway....of my life.\"\n ―\n Sanober Khan,\n \n A touch, a tear, a tempest\n \n \n\n\n\n\n",
"id": "8bb82834-c087-4ba7-960f-4ae2dedbcf83"
},
{
"text": "\n \"Epic love story has only love between two people but do not have 'they lived happily ever after\"\n ―\n Santosh Avvannavar,\n \n The Departing Point: Two people departed...in search of love...leaving love in between\n \n \n\n\n\n\n",
"id": "545b4ec6-3540-4938-b750-e5b655ec65c0"
},
{
"text": "\n \"Why, Andrew, why would it irritate me? Do you think that being loved by you is something to be ashamed of? I don't.\"\n ―\n Andrew Ashling,\n \n A Dish Served Cold\n \n \n\n\n\n\n",
"id": "1e111db0-13ca-48d4-8c7d-63bf894ba985"
},
{
"text": "\n \"She's magic, Cassandra. A single flower blooming in an endless desert.\"\n ―\n Anne Bishop,\n \n Daughter of the Blood\n \n \n\n\n\n\n",
"id": "719b72b6-a72b-4eaf-9ef8-0c292b572ac9"
},
{
"text": "\n \"Love was indeed a big responsibility. One must use the word judiciously. One cannot love one day and take away love the next day. It is total caring.\"\n ―\n Anuradha Bhattacharyya,\n \n The Road Taken\n \n \n\n\n\n\n",
"id": "eff8ca22-41be-42a6-94e2-d8ac4924ec92"
},
{
"text": "\n \"A child is a Soul, a Unit Consciousness materialized on Earth to learn, fulfill its purpose contributing within the Matrix of Gaia. Our parents fought for ‘Expression of Thoughts’, ‘Equality’, we now have a task to fight for the Supremacy of Love over Control within all Areas of Life.‘Conscious Parenting by Natasa Pantovic Nuit Quotes about kids development soul\"\n ―\n Natasa Pantovic Nuit,\n \n Conscious Parenting: Mindful Living Course for Parents\n \n \n\n\n\n\n",
"id": "84e9ed9a-6381-4d2e-bff3-c2e526c91dd3"
},
{
"text": "\n \"when the words not enough to describe how much you love....even you know she/he don't anything for you......you cant fall a sleep exactly like before's\"-kuntal\"\n ―\n Bob Marley,\n \n The Future Is the Beginning: The Words and Wisdom of Bob Marley\n \n \n\n\n\n\n",
"id": "7cdad092-86f4-49ed-91fc-80dbab454df6"
},
{
"text": "\n \"I wonder if you know how special you are; I wonder if you know how precious you are; I wonder if you know how lucky I am to have you in my life; I love you so much.\"\n ―\n Hassan Ali\n",
"id": "6455ac7a-7a88-4549-8561-d9fd8ac580b2"
},
{
"text": "\n \"I may act like I don't care anymore, but if only you could see me inside, you'll know how much I wanted to be with you.\"\n ―\n Jayson Engay\n",
"id": "6290db8c-9eb8-4407-a02f-c617a1c99dd7"
},
{
"text": "\n \"Love' is the only weapon I have, I will defend with love, I will attack with love.\"\n ―\n Amit Kalantri\n",
"id": "fbb8aca3-1fa0-4141-ac78-3dc66d96237b"
},
{
"text": "\n \"When it comes to love, Princess, rules blur, and traditions fade,\"\n ―\n Rose B. Mashal,\n \n Black Keys\n \n \n\n\n\n\n",
"id": "b2fecd3a-5760-4374-8343-0cb834a315f4"
},
{
"text": "\n \"When you start giving, instead of getting, you make a difference… You can always give a warm smile, a sincere hello, a positive vibe… your concern, your attention, your time, your love, and kindness to those around you.\"\n ―\n Roy Bennett\n",
"id": "f5c34e35-85b5-4e90-b481-29fb93eeb89c"
},
{
"text": "\n \"Sharing your kindness sparks understanding all around. Then like fireflies in the night, twinkling love surrounds you.\"\n ―\n Amy Leigh Mercree\n",
"id": "15945f8f-99bd-42ea-87cc-012f920e808a"
},
{
"text": "\n \"I still have that feeling the first time we met every time I see you.\"\n ―\n Jayson Engay\n",
"id": "c733fa9d-66df-4316-94a3-3505d5443d97"
},
{
"text": "\n \"She'll let you put her in her place. But she won't stand for anything worse than first.\"\n ―\n J. Raymond\n",
"id": "5b0caa5d-71f7-49f5-a774-5f30625b455a"
},
{
"text": "\n \"I see these lights, every time I look into your eyes. It crosses my heart, and make me feel in love.\"\n ―\n Jayson Engay\n",
"id": "27608113-419a-446a-a8bf-2fdf1bc11aed"
},
{
"text": "\n \"Love drips like honey from the hive, constant, sweet, precious, into your heart each and every moment if you let it.\"\n ―\n Amy Leigh Mercree\n",
"id": "4e59a77d-62fb-47ba-b947-66da758cb594"
},
{
"text": "\n \"Never fall in love with stargazers – always with accelerated affection. Their love disappears in the blink of an eye like a shooting star.\"\n ―\n RSCruz\n",
"id": "46e4e167-35d8-4a02-8758-c87d1a28e867"
},
{
"text": "\n \"Being present to yourself in love and with kindness is the ultimate gift.\"\n ―\n Amy Leigh Mercree\n",
"id": "088e1a06-19e7-4947-b404-dfe7208752cb"
},
{
"text": "\n \"I think only when you are truly alone can you see you never were.\"\n ―\n Kelly Moran,\n \n Summer's Road\n \n \n\n \n\n\n\n\n\n",
"id": "65eae2e2-690b-431f-a74e-85da859f474e"
},
{
"text": "\n \"When the leaves stop falling wasn't her time to die, it was your time to live.\"\n ―\n Kelly Moran,\n \n When the Leaves Stop Falling\n \n \n\n\n\n\n",
"id": "27a043a5-9029-44d3-93a2-703e66ca1677"
},
{
"text": "\n \"I know love is real because her love is visible.\"\n ―\n \n Delano Johnson poet\n \n",
"id": "9752f719-73ef-49c8-a9e9-083378de13f2"
},
{
"text": "\n \"Dancing, at its best, is independence and intimacy in balance.\"\n ―\n Donna Goddard,\n \n The Love of Devotion\n \n \n\n\n\n\n",
"id": "91fcf234-e2ec-4fb0-83ea-4bfe206a3e9b"
},
{
"text": "\n \"Are you a person who peels off a band-aid slowly or just rips it off all at once?\" Casey contemplated Alexa's warning, recognizing it for what it was.\"\n ―\n Donna McDonald,\n \n Dating a Cougar\n \n \n\n\n\n\n",
"id": "990156aa-a28d-4ac7-88dd-1d634ec665c3"
},
{
"text": "\n \"Love does not wear out the heart, even if it weighs a thousand tons.\"\n ―\n Matshona Dhliwayo\n",
"id": "4d2f42c8-8f55-4935-8437-27f372858e69"
},
{
"text": "\n \"What I cannot touch, remains a memory. I am blinded by an imagined light. A remembrance of what can never be.\"\n ―\n Ayushee Ghoshal\n",
"id": "e2b40292-36cd-415c-8dce-e1b964d573d6"
},
{
"text": "\n \"People think that LGBTs adopting children will hurt them, but it's not being in loving homes that hurts children most.\"\n ―\n DaShanne Stokes\n",
"id": "5948d235-b029-4cd2-92f3-034107d37955"
},
{
"text": "\n \"If love was absent, you would not feel disappointed; you would feel indifferent.\"\n ―\n Staci A. Welch-Bartley\n",
"id": "3156b9b6-b1e5-4221-a633-0c3fcfc52265"
},
{
"text": "\n \"But he knew she was a star, and he, only human. He was never meant to reach the stars - he could only admire them from afar.\"\n ―\n Timothy Joshua\n",
"id": "c289523d-4ac5-44b4-b314-607448c5cd68"
},
{
"text": "\n \"Life is not made up of minutes, hours, days or years, but of moments. Nothing is permanently perfect. But there are perfect moments.\"\n ―\n Alex Haditaghi,\n \n Softly, As I Leave Her\n \n \n\n\n\n\n",
"id": "9eadb5f7-0a02-40d1-8b64-afd3b6479d15"
},
{
"text": "\n \"Relationships are like broken glass. Sometimes it’s better to leave them broken than hurt yourself trying to put the pieces back together\"\n ―\n Alex Haditaghi\n",
"id": "30819326-0e13-4258-81f3-19640111fd8e"
},
{
"text": "\n \"Hurt me back when I hurt you and I would always love you for it.\"\n ―\n Nitin Kumar,\n \n The Way She Loved\n \n \n\n\n\n\n",
"id": "73f25b30-a2e7-419b-9443-5c38695beedd"
},
{
"text": "\n \"Dieses ist das erste Vorgefühl des Ewigen: Zeit haben zur Liebe.\"\n ―\n Rilke, Rainer Maria,\n \n Letters to a Young poet Rainer Maria Rilke\n \n \n\n\n\n\n",
"id": "a1dd9cd6-66db-45ba-af7d-e571b58053f4"
},
{
"text": "\n \"What if choices were not viewed as right and wrong, but instead as just a variety of life experiences?\"\n ―\n Staci A. Welch-Bartley\n",
"id": "f998e34c-8c0b-44fa-9571-3cd16c2dfe2e"
},
{
"text": "\n \"Quando amiamo qualcuno ciò che pensiamo di quella persona è sempre offuscato dal nostro affetto.\"\n ―\n Laura Rocca,\n \n Il mondo che non vedi\n \n \n\n\n\n\n",
"id": "a344bd8e-ebb1-4fe7-b157-0a099a2460bd"
},
{
"text": "\n \"When things are falling apart, know they are actually falling into place.\"\n ―\n Staci A. Welch-Bartley\n",
"id": "fbd519bf-e5aa-4501-a21f-113f0ab75a31"
},
{
"text": "\n \"What if choices were not viewed as right and wrong, but instead as just a variety of life experiences?\"\n ―\n Staci Bartley,\n \n A Dose Of Love: Simple words of wisdom for creating more love and less fear in your relationships.\n \n \n\n\n\n\n",
"id": "36987c81-0e4b-4bcf-ad74-727e02df2c31"
},
{
"text": "\n \"If love was absent, you would not feel disappointed; you would feel indifferent.\"\n ―\n Staci Bartley,\n \n A Dose Of Love: Simple words of wisdom for creating more love and less fear in your relationships.\n \n \n\n\n\n\n",
"id": "34f4c163-c10d-454a-887d-553dc8303ed4"
},
{
"text": "\n \"We stood there, locked and lovely as statues in a garden.\"\n ―\n Paula McClain\n",
"id": "24b03630-6a33-4482-8092-4376996c841a"
},
{
"text": "\n \"I felt you before I knew of your existence, maybe it was a hint from the universe to continue on the yellow brick road, so when I would find you along my travels I would simply just know.\"\n ―\n Nikki Rowe\n",
"id": "fd8cda4f-8b28-411a-b116-06d38b23bb03"
},
{
"text": "\n \"As a parting gift, he gave Harold the key chain from his house keys, the ones that opened the gate to Hamilton Arms: it was a clover, a charm for luck. Its stem was a little drawer, into which, Harold later found, George had put a love note. Harold kept the clover for the rest of his life.\"\n ―\n Liz Moore,\n \n The Unseen World\n \n \n\n\n\n\n",
"id": "685a2565-7cae-4dc7-8d94-cae3cdb6e202"
},
{
"text": "\n \"Lo leerás. Después, charlaremos.Ahora solamente diré que, si tuviera quevivir mil vidas, querría vivirlas todascontigo.\"\n ―\n Hillel Halkin,\n \n Melisande! What Are Dreams?\n \n \n\n\n\n\n",
"id": "05c1f416-4b18-422f-a9bb-b731e98e9abd"
},
{
"text": "\n \"Love didn't seem like something that could be organized or contained; it should be messy and emotional, like exploding and imploding with someone at the exact same time.\"\n ―\n Rita Stradling,\n \n Ensnared\n \n \n\n\n\n\n",
"id": "d967d389-56fa-4c7d-b565-897be5b88af4"
},
{
"text": "\n \"One moment before, I knew nothing of it. And then, all of a sudden, I knew this was it. The most amazing thing. I could feel the whispers, I could feel all the dimensions possible. I could define it. I could call it Love\"\n ―\n D.N. Joshi\n",
"id": "0a611a40-c132-44d6-8933-41260731fc2b"
},
{
"text": "\n \"Twin flames do exist.\"\n ―\n Efrat Cybulkiewicz\n",
"id": "69e54619-1370-4ea9-94e2-92e947974cc9"
},
{
"text": "\n \"Only the ones whose hearts have been conquered by LOVE know the secret language of the eyes. Leave trails of love today, perhaps others might be brave enough to follow\"\n ―\n Val Uchendu\n",
"id": "2e91adaa-71c6-44c7-8f9e-6dd146fb60c4"
},
{
"text": "\n \"Desire speaks, passion shouts, lust screams, and love whispers.\"\n ―\n Matshona Dhliwayo\n",
"id": "dd942b44-d0f0-40bf-b8f7-68102d9b9ea8"
},
{
"text": "\n \"What I cannot tough, remains a memory, I am blinded by an imagined light. A remembrance of what can never be\"\n ―\n -Ayushee Ghoshal, 4 AM Conversations with the Ghosts of Old Lovers\n",
"id": "6c81c623-3654-4079-b59d-627ae793376d"
},
{
"text": "\n \"Many speak to her but she's looking for the one who knows her souls language.\"\n ―\n Nikki Rowe\n",
"id": "269fb0a0-79c2-4e8b-99e7-e70abe06b3be"
},
{
"text": "\n \"You wanna love me for the rest of your life?\"\"Baby, I’m gonna love you for the rest of my life,\" Harry says, pressing a quick, careful kiss to the corner of Louis’ mouth. \"I just hope that you want to be loved by me for the rest of your life.\"\n ―\n whoknows,\n \n Indestructible\n \n \n\n \n\n\n\n\n\n",
"id": "35997210-ebf1-4e95-a3b5-a9e7ab6d2768"
},
{
"text": "\n \"love wounds me with soft pillows with tender lips and fingers\"\n ―\n Sanober Khan,\n \n A touch, a tear, a tempest\n \n \n\n\n\n\n",
"id": "62ee67e5-faf0-43a9-a718-724adc741346"
},
{
"text": "\n \"He touched my soul long before I knew what his hands felt like.\"\n ―\n Nikki Rowe\n",
"id": "5c9aed55-7f00-4b27-be50-72c89cb092b4"
},
{
"text": "\n \"And if my heart was a canvas, every square inch of it would be painted over with you.\"\n ―\n Cassandra Clare,\n \n Lady Midnight\n \n \n\n\n\n\n",
"id": "e150664f-0728-427f-91ce-6e19bfdfbda0"
},
{
"text": "\n \"Do not turn me intorestless watersif you cannot promiseto be my stream.\"\n ―\n Sanober Khan\n",
"id": "bba22d04-94d7-4201-b3b4-c0e27f9ce519"
},
{
"text": "\n \"Everything started as nothing.\"\n ―\n Auliq Ice\n",
"id": "aec3682f-a0ff-407c-a6a0-c5358a758a45"
},
{
"text": "\n \"I have always wanted to give you the world, so I started giving you pieces of the oceans that kept us apart.\"\n ―\n Karen Quan,\n \n Write like no one is reading\n \n \n\n\n\n\n",
"id": "37a5d50d-98df-4326-bf70-6bf5e91c7e07"
},
{
"text": "\n \"your voice is a place i want to take shelter in, a place that makes me feel safe and soft.\"\n ―\n Zaeema J. Hussain,\n \n The Sky Is Purple\n \n \n\n\n\n\n",
"id": "4efe0a65-4d31-472e-9817-853dbcab2322"
},
{
"text": "\n \"Every night, I laid awake with your memories flooding through my eyes with the hope to be with you when sleep arrived.\"\n ―\n Anmol Rawat,\n \n A Little Chorus of Love\n \n \n\n\n\n\n",
"id": "be33b274-97a8-4aa7-8e47-2465ff82c9d7"
},
{
"text": "\n \"We thought everything would be forgotten, but I still remember yourclaws running down my back.I wonder if you still think about us,the way I do.How our legs would crash into each other in the middle of the night, and how we endedup creating the moon in the confines of our beds.\"\n ―\n Zaeema J. Hussain,\n \n The Sky Is Purple\n \n \n\n\n\n\n",
"id": "d2e2871e-0ab7-424d-ac21-15cb2523b5df"
},
{
"text": "\n \"The way to my heart shattered when you left me, but I was glad because your memories were invulnerable, locked inside my heart.\"\n ―\n Anmol Rawat,\n \n A Little Chorus of Love\n \n \n\n\n\n\n",
"id": "6e109032-8055-4bf8-bed4-effd0b968f60"
},
{
"text": "\n \"It's loud inside my head, with those words I want to say to you.\"\n ―\n Jayson Engay\n",
"id": "38f5601b-11c3-402a-a46e-78eac9a00ef7"
},
{
"text": "\n \"I have a question for you. \"If your shadow is the second most beautiful thing in the world, which is the first?\".\"\n ―\n Amit Kalantri,\n \n I Love You Too\n \n \n\n\n\n\n",
"id": "87f95a4b-2c66-4a06-8b57-4ce03679f213"
},
{
"text": "\n \"There is no cosmetic to gain a beauty like yours.\"\n ―\n Amit Kalantri,\n \n I Love You Too\n \n \n\n\n\n\n",
"id": "b6d40aa4-c5dc-4f52-a6d4-35bd65f0257e"
},
{
"text": "\n \"Love is the opposite of fear and it lights the flames of a million hearts.\"\n ―\n Amy Leigh Mercree\n",
"id": "cc6c4c10-7358-4617-8984-ad05ce8122cd"
},
{
"text": "\n \"If you do not love me I shall not be loved. If I do not love you I shall not love.\"\n ―\n Samuel Beckett\n",
"id": "a99d2c05-7a64-4ef4-a1f7-d201698d2721"
},
{
"text": "\n \"I am here, I will always be here. Watching you, loving you.\"\n ―\n Jayson Engay\n",
"id": "bfe9e203-4648-478e-81c1-1483cf7fbaf1"
},
{
"text": "\n \"Farsi Couplet:Mun tu shudam tu mun shudi,mun tun shudam tu jaan shudiTaakas na guyad baad azeen, mun deegaram tu deegariEnglish Translation:I have become you, and you me,I am the body, you soul;So that no one can say hereafter,That you are someone, and me someone else.\"\n ―\n Amir Khusrau,\n \n The Writings Of Amir Khusrau :700 years after the prophet : a 13th-14th century legend of Indian-sub-continent\n \n \n\n\n\n\n",
"id": "8dc0b4ba-b661-466d-a768-f2a4869c7792"
},
{
"text": "\n \"Love is not a forest fire that burns intensely,hotly and out of control for a brief moment until,its expendable fuel spent,it sputters,seeking in vain for something else to consume,to sustain itself before, finally,it dies:cold, black ash the only evidence of its passing.Love is, instead, a campfire:it provides ample heat and comfortto the twosome who sit before it,and although its flames may at times wane,a well-tended campfire’s embers can be nurtured and fanneduntil the flames once again dance brightly and cheerfully,providing comfort to the couple who cherish the gentle warmth it ministers.\"\n ―\n J. Conrad Guest,\n \n January's Paradigm\n \n \n\n\n\n\n",
"id": "bb8b0766-0823-4ce2-8102-0c0441396996"
},
{
"text": "\n \"Love is about the good moments, but it's about holding on to each other during the difficult ones, too. Coming out on the other side, weathered but still holding hands, isn't easy. It's the most difficult thing there can possibly be, but I know now it's the truest test of love there is.\"\n ―\n Aisha Saeed,\n \n Written in the Stars\n \n \n\n\n\n\n",
"id": "da751400-276a-4a5a-bd7e-bfb07ac2bc49"
},
{
"text": "\n \"A girl who travels will need someone that questions her, not too little, and not too much. She’ll need someone to read her, but also really listen to her. Because she’ll want to do the same. She’ll want a person that shares an interest but at the same time stays genuine to who they are. Not drown in a puddle of narcissism. And not drown in a lake of fascination.\"\n ―\n lauren klarfeld\n",
"id": "e0c8da35-8d34-45c5-bc2a-636275694a41"
},
{
"text": "\n \"That’s real love and real happiness. It’s when you go to sleep every night hoping that you are less happy than your lover; it’s hoping that you’ve given everything you could to them so that their day could be just a tiny bit better.\"\n ―\n Lexie Syrah,\n \n Torn: A Dark BDSM Romance Novel\n \n \n\n\n\n\n",
"id": "80767c96-5126-499f-8633-4257beedd895"
},
{
"text": "\n \"I learned that love can transcend race and time, and that it can be beautiful and perfect and worth fighting for but also fragile and heartbreaking, and sometimes sacrifice is necessary. That sometimes it’s you against the world, and there are no easy answers. That you have to know when to hold on…and when to let go.\"\n ―\n Julie Kagawa,\n \n The Iron Queen\n \n \n\n\n\n\n",
"id": "dab3eed6-8d2f-43fd-8a4a-30330932627a"
},
{
"text": "\n \"I can't live without the sun shining down on my face, and I can't dream without the stars kissing me goodnight.\"\n ―\n S.L. Jennings,\n \n Taint\n \n \n\n\n\n\n",
"id": "3138d37d-bb75-4b8e-bfcf-2741dd808111"
},
{
"text": "\n \"It's so loud inside my head, with those words I want to say to you.\"\n ―\n Jayson Engay\n",
"id": "627158c4-5992-4558-80eb-c70097a7c636"
},
{
"text": "\n \"After 40 years of marriage, isn’t it amazing when you can look at your partner sound asleep next to you and still believe they have potential.\"\n ―\n Kaylin McFarren\n",
"id": "9d94102f-430b-4911-8bd4-1ff0d7bac1ef"
},
{
"text": "\n \"I didn't want to be the woman who gave herself over willingly to the first man to notice her. I didn't want to be the stupid girl in every novel who loved without question and entered relationships that didn't make sense.\"\n ―\n Destinee Hardwick,\n \n Wishing on Raining Stars\n \n \n\n\n\n\n",
"id": "f7b54598-b0aa-4365-8489-c188f1690ab8"
},
{
"text": "\n \"YOU are your own guru. YOU are your own soul mate. YOU are powerful. Take the reigns and drive your carriage home to love.\"\n ―\n Amy Leigh Mercree\n",
"id": "769d9c22-d1a7-45f3-872e-05ff7bd3283c"
},
{
"text": "\n \"A circle's unity and never ending smoothness is how we can aim to feel inside. Smooth, gentle, accepted, no rough edges, only love for all parts of our selves.\"\n ―\n Amy Leigh Mercree\n",
"id": "dfd169b8-368e-4320-a3bf-14bcdb2fe3c9"
},
{
"text": "\n \"Soul mate romance dissolves the superficial and touches your deepest heart with the delightful power of love.\"\n ―\n Amy Leigh Mercree\n",
"id": "9f95763b-08d0-4486-be7b-0be2387b1461"
},
{
"text": "\n \"Forget everything that surrounds you. Think that there’s just you and me in this wide world.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n \n\n\n\n\n\n",
"id": "d4ba6b92-886d-4be2-ae31-ad3d7606f5a7"
},
{
"text": "\n \"If your parents left you, it doesn’t mean that other people will also do it to you.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "434073db-a029-4f61-9348-ce1baadadc5b"
},
{
"text": "\n \"Love at first sight kill at first betray\"\n ―\n indashisha_pakem\n",
"id": "6afcc22c-f805-477e-83cd-2d7f950d3184"
},
{
"text": "\n \"If there’s one thing I’ve learned, buddy, it’s that love is messy and complicated. If it’s too easy, then it isn’t the real deal. It can’t be, because passion doesn’t follow the path of least resistance. It’s this fiery, out-of-control entity that sucks you in and spits you out more hurt and more alive than ever before.\"\n ―\n Siobhan Davis,\n \n Saven Deliverance\n \n \n\n\n\n\n",
"id": "ab8fc5fb-7e91-4809-899f-e9c79717b007"
},
{
"text": "\n \"There are thousands of languages around the world, but love is the most beautiful of them all.\"\n ―\n Matshona Dhliwayo\n",
"id": "840de563-be9b-4f15-8332-0d3c25048fe4"
},
{
"text": "\n \"Plucking a rose only proves you desire it, but nurturing it proves you love it.\"\n ―\n Matshona Dhliwayo\n",
"id": "3f462ad8-7efa-4bf2-88a0-6c322c40bcff"
},
{
"text": "\n \"You spend the beginning part of your life with your mother, so love her; the middle part of your life with your girlfriend, so care for her; and the end part of your life with your wife, so adore her.\"\n ―\n Matshona Dhliwayo\n",
"id": "0006c9db-c209-49d2-b39f-643d4332045c"
},
{
"text": "\n \"When love writes a letter, joy is its ink.\"\n ―\n Matshona Dhliwayo\n",
"id": "6eb59649-a079-4598-8a59-368bdc7ebf42"
},
{
"text": "\n \"Everyone thinks to the extent of their own depravity.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "c251e828-0d1a-49c8-af13-f240bf58d451"
},
{
"text": "\n \"Don't be shy, dear. I'm too old for you to be embarrassed by me.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "c1494a31-564a-4cf1-a7ad-de367385c91c"
},
{
"text": "\n \"You are like a narcotic plant.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "5de66b90-6f04-4e90-917b-26e650f172e2"
},
{
"text": "\n \"I swear I won't touch you even with a finger until you ask me yourself.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "70320844-d76d-4c18-87fd-37b732dd9b68"
},
{
"text": "\n \"The words of men cannot be trusted, especially men like you!\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "7aaa2b3b-b716-429e-bbe3-ebc6f7a5432f"
},
{
"text": "\n \"Stop smiling as if I’ve been acquainted with you for ages!\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "53125899-64e0-4e2d-adaf-d06bfff72c55"
},
{
"text": "\n \"I think the word ‘pleasure’ is unknown to you. More precisely, its practical meaning.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "d8ef6962-a64f-44d9-b33f-0c4fb7d4820d"
},
{
"text": "\n \"There's no difficulty that love cannot conquer... no door love cannot open...No wall enough love will not bring down... only if we could love enough When love, skill, a talent or gift work together... we create a masterpieceLove someone with your skill, your talent or our gift... Make someone's life easier... Make someone happy today... Create your masterpiece today\"\n ―\n Val Uchendu\n",
"id": "aff00a90-dc77-4b22-bdff-6661c387711f"
},
{
"text": "\n \"It's just like in a Brazilian serial! Destiny has brought us together.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "55813991-544c-4637-a599-856bf37c656b"
},
{
"text": "\n \"I'm afraid that if we move on to such topics, I won't be able to let you go safe and sound.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "652369da-c04e-4c62-ac8a-a0989b500758"
},
{
"text": "\n \"A brave girl! And a unique one. The best that I have ever met in my life.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "2c30d024-71c2-4a01-ba91-f4d8d2388652"
},
{
"text": "\n \"You're very naive and innocent, and don't understand a lot of things yet.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "47ec5fd8-8acb-4643-b5e1-db64208729ca"
},
{
"text": "\n \"I cannot believe that you're still a girl. Your kisses don’t seem that innocent. They are driving me crazy.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "b97fa6a8-2f7c-47ce-b584-a2e44df99e69"
},
{
"text": "\n \"If you go on touching me, I’ll catch fire before your eyes.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "f98d473a-43fa-482d-82f5-c99e01d6c8c2"
},
{
"text": "\n \"I don't want you to leave. I want you to stay.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "71341019-7f41-4d2d-a2e1-f9e4800a2820"
},
{
"text": "\n \"I’m giving pleasure to you. Don’t interfere.\"\n ―\n Olga Goa\n",
"id": "a51f568d-84fd-4591-8ec3-730c64b99c27"
},
{
"text": "\n \"Love should never mean having to live in fear.\"\n ―\n DaShanne Stokes\n",
"id": "259b9de3-358c-4675-bdf0-94053bab7054"
},
{
"text": "\n \"If you were three times poor, I would still have paid attention to you and fell head over heels in love with you.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "685056b4-e4cc-49fb-85f2-523ccb0b56d4"
},
{
"text": "\n \"I need only you, Milano, not your money.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "1220ed13-d315-4690-a368-f38b9c1df6e5"
},
{
"text": "\n \"And you haven’t got a ‘pause’ button, have you? You are just uncontrollable!\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "080dc810-ff19-4920-9b13-416dc309f13d"
},
{
"text": "\n \"You can't push me away, mio cuore. You can't!\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "89319656-05d2-498b-8b83-b4121205d4b3"
},
{
"text": "\n \"Scusi mia bella*, but it runs in the blood of all Italians to be skillful lovers. So you have to get used to this.\"\n ―\n Olga Goa,\n \n Fateful Italian Passion, Volume 1\n \n \n\n\n\n\n",
"id": "b0c0040a-f3d2-47ab-97e9-178742c39bf9"
},
{
"text": "\n \"Learn, Teach, Love, Experience and Grow. That's what I know about this life we live.\"\n ―\n Jonathan Anthony Burkett\n",
"id": "3a8aa96c-ef29-43c4-89f2-73e178388329"
},
{
"text": "\n \"Like freshly cut roses, I place life in a vase... of love.\"\n ―\n Kamand Kojouri\n",
"id": "152bb2d1-facf-43bb-9e0f-761f0ee36e5c"
},
{
"text": "\n \"Falling in love is accidental, staying in love is intentional, and growing in love is delightful.\"\n ―\n Matshona Dhliwayo\n",
"id": "9db08de6-310e-4b37-8041-5dbec37be9f5"
},
{
"text": "\n \"I need someone who knows to enjoy life. Someone who'll get high with me at the Pere - Lechaise cemetery. Someone who'll lose their breath running trough the Louvre. Someone who'll go to coffee with a good book ( Fyodor Dostoyevsky, L. Tolstoy, Voltaire, A. Camus, Oscar Wilde, Gustave Flaubert ). During the weekends to the cafe de Flore, and after that lunch at Ritz. Someone who'll get lost in Paris in the middle of the night. Someone who'll lay beside Seine, drink wine and listen to Florence and Machine, Banks, Borns, Hurts, Bjork, Tom Odelle... Someone who can sit in front of S.Dali's paintings for hours and not talk. Someone who wants to live. Someone who wants to travel and see the world. Someone who'll look at the stars for hours, talk about life, someone who is not afraid of death.\"\n ―\n SV\n",
"id": "208dfe8f-2ab2-42e9-9d13-c79fe681ee15"
},
{
"text": "\n \"I searched everywhere for love. I knocked on every door and turned over every stone. But it was only until I returned home that I found love waiting for me.\"\n ―\n Kamand Kojouri\n",
"id": "d458a258-0af0-491c-a0ca-dccef85e94f3"
},
{
"text": "\n \"A woman’s beauty is worth little to you, a woman’s intelligence is worth much to you, a woman’s virtue is worth more to you, a woman’s love is worth the most to you, and a woman’s loyalty is worth everything to you.\"\n ―\n Matshona Dhliwayo\n",
"id": "e0c97d3b-987f-4995-bdd3-e6f2f717175d"
},
{
"text": "\n \"True love is like diamonds; scarce, and priceless.\"\n ―\n Matshona Dhliwayo\n",
"id": "1a98ef0e-db35-4001-895e-3107013b25b7"
},
{
"text": "\n \"The greatest profit you make in business is not money, but happiness. The greatest riches you give in life are not possessions, but love. The greatest treasures you acquire in life are not jewels, but joy.\"\n ―\n Matshona Dhliwayo\n",
"id": "76792202-e939-48fd-9f5e-18c124190258"
},
{
"text": "\n \"My name be Clark Davis\", he hurried on,\"an it peers to me thet you an' me be in need of one another\".\"\n ―\n Janette Oke,\n \n Love Comes Softly\n \n \n\n \n\n\n\n\n\n",
"id": "2e919b6a-aa7f-408c-a6f0-6042447515ef"
},
{
"text": "\n \"He must be suffering, too. She had noted the weary sag of his shoulders, the quivering lips, the tear- filled eyes. Somehow she had never thought of him as hurting- of being capable of understanding how she felt.\"\n ―\n Janette Oke,\n \n Love Comes Softly\n \n \n\n\n\n\n",
"id": "a55d2d50-16ea-4343-8024-a015e7f172b3"
},
{
"text": "\n \"I never thought I would lose you I never thought You would be gone I never thought The love we had Now is done,,,,,,,,,,,,,,,,,,,,,You meant the world to me You are all I had in life My magical symphony Had ended tonight ………………………\"\n ―\n sami abouzid\n",
"id": "824c0614-ddcb-4fe7-ab05-fdd946fed914"
},
{
"text": "\n \"Infinity and Always.\"\n ―\n Aubrey Grace Tomlinson\n",
"id": "be32e757-b1fd-4548-9f35-0d6ddf3f1eed"
},
{
"text": "\n \"LOVE, is the most powerful thing that makes my world turn upside down.\"\n ―\n Bernie Yaras\n",
"id": "6c811bcb-e47d-4b55-840b-2c3af1012491"
},
{
"text": "\n \"Don’t say you’re sorry I have to let you go ….Time will show Sadness will grow …..\"\n ―\n sami abouzid\n",
"id": "601f27c6-977a-4971-9b13-61726afde371"
},
{
"text": "\n \"Be like the sun who fell in love with the moon and shared all his light.\"\n ―\n Kamand Kojouri\n",
"id": "f1968aae-c390-4bcb-97b7-3d2a90f79ac8"
},
{
"text": "\n \"Some of us are born as soulmates; equivalent to master keys that can open every lock to every door, but who are not meant to have a soulmate in return. And since life biologically designed to fall in love....some of us eventually \"settle,\" for a multitude of reasons. But firstly, a real subconscious fear of becoming elderly and completely alone.\"\n ―\n Efrat Cybulkiewicz\n",
"id": "b8e9edb0-c789-4eec-adb4-cbc3667736ff"
},
{
"text": "\n \"When love invades your life, it captures your heart, imprisons your mind, and frees your soul.\"\n ―\n Matshona Dhliwayo\n",
"id": "04087268-8b5c-4ff8-9000-96b09888a1fd"
},
{
"text": "\n \"You really shouldn't say I love you unless you mean it. But if you mean it you should say it a lot. People forget.\"\n ―\n Unknown\n",
"id": "031269ae-c49f-47f5-a4e1-c6ba47241811"
},
{
"text": "\n \"Know that time is a balm that slowly heals all wound. You'll heal, you'll learn to live with the scars, you'll love again and you won't be the same, nor would you want to\"\n ―\n Val Uchendu\n",
"id": "a7916bac-5129-46dd-a57a-f9bee7316f5d"
},
{
"text": "\n \"Perhaps the most hillarious yet true advice I ever gave on marriage is this one. Don't marry because of Love, marry because of food Love fades, beauty wanes but hungry doesn't\"\n ―\n Seun Ajibade\n",
"id": "c88f8e64-6881-477e-8a9a-2ffeca0932ca"
},
{
"text": "\n \"Never settle for being ordinary, you're made whole in God, you're uniquely perfect. Made to love and be loved.\"\n ―\n Val Uchendu\n",
"id": "d58dcfdf-338c-409f-ab71-dcc11e2d09c3"
},
{
"text": "\n \"A wanton women is ripened fruit,' Constanze intoned,'begging to be plucked by the Goblin King.\"\n ―\n S. Jae-Jones,\n \n Wintersong\n \n \n\n\n\n\n",
"id": "fc9e7858-4d6f-4209-a555-cc44539e8ebb"
},
{
"text": "\n \"In any relationship I believe love should flow naturally . We cannot control it, make other person guilty or punish it to happen.Love need patience , acceptance and trust. For love to come we make a hard and fast rule on from where, who and we chase it. Love flow naturally.When you feel scarcity of love , you need to be patience , big hearted, whole. Remain in your own love zone do not push, control because love is natural. You cannot ask or demand for it.We might not get the people who we want us to love but there are people who will step in and they can see the light or flow of our love as it is.We do not need to transform anyone, we need to know our love towards ourselves and how it flows in others.When resistance is not there, when openness comes in a relationship . We bend, we are flexible and we trust our loving nature . We become less depended on what other is giving us. We do get fair love and acceptance too.\"\n ―\n Archna Mohan\n",
"id": "0bc9402d-678f-4e5b-91b3-4057c0a52a47"
},
{
"text": "\n \"How can you be a lover of loveand not be a lover of God?It is impossible.\"\n ―\n Kamand Kojouri\n",
"id": "cff08bf9-a3ad-4a4d-9924-a09e7330df84"
},
{
"text": "\n \"Start loving yourself early so others will know how to love you amazingly.\"\n ―\n Nisla Love\n",
"id": "1b2dea19-5b1b-4739-bd6c-4e38a8672000"
},
{
"text": "\n \"Don't allow distance to truly separate you. Make your love last beyond the distance.\"\n ―\n Nisla Love\n",
"id": "03589297-0661-4f10-bced-89e68dedba3f"
},
{
"text": "\n \"Remember, never give up on love. It is easier to give up in search of a better prize, because the brain always keeps craving for new stimulants, but this way you only keep on searching, never to find peace in love. Let me tell you a story. There was a student who asked his teacher, what is love. The teacher said go into the field and bring me the most beautiful flower. The student returned with no flower at hand andsaid, I found the most beautiful flower in the field but I didn't pick it up for I might find a better one, but when I returned to the place, it was gone.We always look for the best in life. When we finally see it, we take it for granted and after some time start expecting a better one, not knowing that it's the best. Seek for your love, and once you have it never ever give up on it, no matter the situations.\"\n ―\n Abhijit Naskar\n",
"id": "cf33cf0c-995b-4c1f-830c-c38f17656855"
},
{
"text": "\n \"Get up, work out, eat well, enjoy the moment, be present and show up for people who need your love; family, friends, less privileged, your followers. Appreciate love and remember, the journey is more important than the destination.\"\n ―\n Val Uchendu\n",
"id": "ed310f12-8bbc-401d-8a4d-e5a5075e07ea"
},
{
"text": "\n \"When you are in love, your eyes see him only, your ears hear him only, your mouth speaks of him only, your mind thinks of him only, your heart desires him only, your soul lives for him only, and your entire universe is about him only.\"\n ―\n Matshona Dhliwayo\n",
"id": "df14b801-4026-4fa7-a25a-bf0b5581b46c"
},
{
"text": "\n \"Love is the greatest drug; joy is the strongest medicine; virtue is the noblest remedy; together, they are the greatest therapy.\"\n ―\n Matshona Dhliwayo\n",
"id": "43069396-f1bf-4711-aa55-606c770360a9"
},
{
"text": "\n \"If your soul mate comes with too much baggage, help her unpack it.\"\n ―\n Matshona Dhliwayo\n",
"id": "9b15a1e7-1131-4f3d-914b-49dd34656c74"
},
{
"text": "\n \"I’ve become your heartbeat making you mine Upon every kiss of passion our souls shine\"\n ―\n Munia Khan\n",
"id": "62e80860-f9f0-4990-80c0-61f8a226dbe8"
},
{
"text": "\n \"Glimpse is a meeting of dreamers in the silent night sky.\"\n ―\n W.D. Tuck,\n \n Glimpse\n \n \n\n \n\n\n\n\n\n",
"id": "4b237a4c-fb83-43b7-95f4-3be2180d04cd"
},
{
"text": "\n \"Love rewards you more in a moment than pleasure could in a lifetime.\"\n ―\n Matshona Dhliwayo\n",
"id": "27dac33e-4b6a-425d-91b2-b2fa633e54a8"
},
{
"text": "\n \"Love is a two-way street, but not everyone deserves a license.\"\n ―\n Carlos Wallace,\n \n The Other 99 T.Y.M.E.S: Train Your Mind to Enjoy Serenity\n \n \n\n\n\n\n",
"id": "cc14bbb0-10f5-4e86-b3ea-c1094aace816"
},
{
"text": "\n \"Never be afraid to love. Just be careful who you love.\"\n ―\n Carlos Wallace,\n \n The Other 99 T.Y.M.E.S: Train Your Mind to Enjoy Serenity\n \n \n\n\n\n\n",
"id": "4fac958d-3a22-4973-8522-976b44a1af44"
},
{
"text": "\n \"The degree of loving is measured by the degree of giving.\"\n ―\n Edwin Louis Cole\n",
"id": "2b850021-fd22-4046-8701-67431430b9f1"
},
{
"text": "\n \"I discovered that politics is not entirely about agendas and manifestos of some old, sullen creep promising a better future of the country as a whole. Politics is being played everywhere and it starts from the very bedroom that you consider your safe haven.\"\n ―\n Adhish Mazumder,\n \n Solemn Tales of Human Hearts\n \n \n\n\n\n\n",
"id": "b3fdfa3f-93d0-430e-9f91-5cabeeb7177a"
},
{
"text": "\n \"Though love may be blind, it sees much;though it may be deaf, it hears much;though it may be mute, it says much;and though it may be lame, it does much.\"\n ―\n Matshona Dhliwayo\n",
"id": "da53b273-85f0-408a-9db2-76e1bec82b35"
},
{
"text": "\n \"Love conquers the body by embracing it,conquers the mind by massaging it,conquers the heart by kissing it,and conquers the soul by marrying it.\"\n ―\n Matshona Dhliwayo\n",