forked from SpicyDevs/spicydevs.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacypolicy.html
More file actions
1447 lines (1414 loc) · 60.4 KB
/
privacypolicy.html
File metadata and controls
1447 lines (1414 loc) · 60.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<!-- Favicons -->
<link href="assets/img/favicon.ico" rel="icon" />
<link href="assets/img/favicon.ico" rel="apple-touch-icon" />
<title>SpicyDevs - Privacy Policy</title>
<meta name="title" content="SpicyDevs | Terms of Service" />
<meta
name="description"
content="Privacy Policy provided by SpicyDevs; you must follow this while interacting with our website"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://spicydevs.js.org" />
<meta property="og:title" content="Terms of Service | SpicyDevs" />
<meta
property="og:description"
content="Privacy Policy provided by SpicyDevs; you must follow this while interacting with our website"
/>
<meta property="twitter:url" content="https://spicydevs.js.org" />
<meta property="twitter:title" content="Terms of Service | SpicyDevs" />
<meta
property="twitter:description"
content="Privacy Policy provided by SpicyDevs; you must follow this while interacting with our website"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<style>
.privacy-policy {
padding: 60px 0;
}
.privacy-policy .privacy-policy-list {
padding: 0;
list-style: none;
}
.privacy-policy .privacy-policy-list li {
border-bottom: 1px solid #d4e5fc;
margin-bottom: 20px;
padding-bottom: 20px;
}
.privacy-policy .privacy-policy-list .question {
display: block;
position: relative;
font-family: #106eea;
font-size: 18px;
line-height: 24px;
font-weight: 400;
padding-left: 25px;
cursor: pointer;
color: #0d58ba;
transition: 0.3s;
}
.privacy-policy .privacy-policy-list i {
font-size: 16px;
position: absolute;
left: 0;
top: -2px;
}
.privacy-policy .privacy-policy-list p {
margin-bottom: 0;
padding: 10px 0 0 25px;
}
.privacy-policy .privacy-policy-list .icon-show {
display: none;
}
.privacy-policy .privacy-policy-list .collapsed {
color: black;
}
.privacy-policy .privacy-policy-list .collapsed:hover {
color: #106eea;
}
.privacy-policy .privacy-policy-list .collapsed .icon-show {
display: inline-block;
transition: 0.6s;
}
.privacy-policy .privacy-policy-list .collapsed .icon-close {
display: none;
transition: 0.6s;
}
</style>
</head>
<body>
<!-- ======= Top Bar ======= -->
<section id="topbar" class="d-flex align-items-center">
<div
class="container d-flex justify-content-center justify-content-md-between"
>
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope d-flex align-items-center"
><span>
<a href="mailto:hello@spicy.is-a.dev"
>hello@spicy.is-a.dev</a
></span
></i
>
</div>
<div class="social-links d-none d-md-flex align-items-center">
<a href="./discord" class="discord" target="_blank"
><i class="bi bi-discord"></i
></a>
</div>
</div>
</section>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo">
<a href="./">SpicyDevs<span>.</span></a>
</h1>
<!-- .navbar -->
<nav id="navbar" class="navbar">
<ul>
<li>
<a class="nav-link scrollto active" href="./#hero">Home</a>
</li>
<li><a class="nav-link scrollto" href="./#about">About</a></li>
<li>
<a class="nav-link scrollto" href="./#services">Services</a>
</li>
<li><a class="nav-link scrollto" href="./#team">Team</a></li>
<li><a class="nav-link scrollto" href="./order">Order</a></li>
<li class="dropdown">
<a href="#"
><span>Show More</span> <i class="bi bi-chevron-down"></i
></a>
<ul>
<li><a href="./codes">Codes</a></li>
<li><a href="./connect">SpicyDevs Connect</a></li>
<li>
<a href="./discord" target="_blank">Discord</a>
</li>
</ul>
</li>
<li><a class="nav-link scrollto" href="./#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</div>
</header>
<!-- End Header -->
<!-- ======= Main ======= -->
<section id="privacy-policy" class="privacy-policy">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>privacy-policy</h2>
<h3>SpicyDevs - <span>Privacy Policy</span></h3>
<p>SpicyDevs - Spice it Up</p>
</div>
<div class="row">
<div class="col-xl-10">
<ul class="privacy-policy-list">
<li>
<div
data-bs-toggle="collapse"
class="collapsed question"
href="#privacy-policy1"
>
Introduction
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy1"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p>
<a href="./"> <b>SpicyDevs</b></a> (“us”, “we”, or “our”)
operates
<a href="./"> <b>https://spicydevs.js.org</b></a>
(hereinafter referred to as <b>“Service”</b>).
</p>
<p>
Our Privacy Policy governs your visit to
<a href="./"> <b>https://spicydevs.js.org</b></a
>, and explains how we collect, safeguard and disclose
information that results from your use of our Service.
</p>
<p>
We use your data to provide and improve Service. By using
our Service, you agree to the collection and use of
information in accordance with this policy. Privacy Policy
have the same meanings as in our Terms and Conditions.
</p>
<p>
Our Terms and Conditions (<b>“Terms”</b>) govern all use of
our Service and together with the Privacy Policy constitute
your agreement with us (<b>“agreement”</b>).
</p>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy2"
class="collapsed question"
>
Definitions
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy2"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<br />
<ol type="I">
<li>
<p>
<b>SERVICE</b> means the
<a href="./">https://spicydevs.js.org</a> website
operated by SpicyDevs.
</p>
</li>
<li>
<p>
<b>PERSONAL DATA</b> means data about a living
individual who can be identified from those data (or
from those and other information either in our
possession or likely to come into our possession).
</p>
</li>
<li>
<p>
<b>USAGE DATA</b> is data collected automatically either
generated by the use of Service or from the Service
infrastructure itself (for example, the duration of a
page visit).
</p>
</li>
<li>
<p>
<b>COOKIES</b> are small files stored on your device
(computer or mobile device).
</p>
</li>
<li>
<p>
<b>DATA CONTROLLER</b> means a natural or legal person
who (either alone or jointly or in common with other
persons) determines the purposes for which and the
manner in which any personal data are, or are to be,
processed. For the purpose of this Privacy Policy, we
are a Data Controller of your data.
</p>
</li>
<li>
<p>
<b>DATA PROCESSORS (OR SERVICE PROVIDERS)</b> means any
natural or legal person who processes the data on behalf
of the Data Controller. We may use the services of
various Service Providers in order to process your data
more effectively.
</p>
</li>
<li>
<p>
<b>DATA SUBJECT</b> is any living individual who is the
subject of Personal Data.
</p>
</li>
<li>
<p>
<b>THE USER</b> is the individual using our Service. The
User corresponds to the Data Subject, who is the subject
of Personal Data.
</p>
</li>
</ol>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy3"
class="collapsed question"
>
Information Collection and Use
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy3"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p class="fst-italic">
<b>
We collect several different types of information for
various purposes to provide and improve our Service to
you.</b
>
>
</p>
<ol type="I">
<li>
<p>
<b>Types of Data Collected</b>
</p>
<ol type="i">
<li>
<p>
<b>Personal Data</b>
</p>
<p>
While using our Service, we may ask you to provide
us with certain personally identifiable information
that can be used to contact or identify you (<b
>“Personal Data”</b
>). Personally, identifiable information may
include, but is not limited to:
</p>
<br />
<ul>
<li>Email Address(es)</li>
<li>Phone Number(s)</li>
<li>
Address, Country, State, Province, ZIP/Postal
Code, City
</li>
<li>Cookies and Usage Data</li>
<li>First Name and Last Name or Nick Name</li>
</ul>
<p>
We may use your Personal Data to contact you with
newsletters, marketing or promotional materials, and
other information that may be of interest to you.
You may opt-out of receiving any, or all, of these
communications from us by following the
<a href="./unsubscribe">unsubscribe link</a>.
</p>
</li>
<li>
<p><b>Usage data</b></p>
<p>
We may also collect information that your browser
sends whenever you visit our Service or when you
access Service by or through any device (<b
>“Usage Data”</b
>).
</p>
<p>
This Usage Data may include information such as your
computer’s Internet Protocol address (e.g. IP
address), browser type, browser version, the pages
of our Service that you visit, the time and date of
your visit, the time spent on those pages, unique
device identifiers and other diagnostic data.
</p>
<p>
When you access Service with a device, this Usage
Data may include information such as the type of
device you use, your device unique ID, the IP
address of your device, your device operating
system, the type of Internet browser you use, unique
device identifiers and other diagnostic data.
</p>
</li>
<li>
<p><b>Location Data</b></p>
<p>
We may use and store information about your location
if you give us permission to do so (<b
>“Location Data”</b
>). We use this data to provide features of our
Service, to improve and customize our Service.
</p>
<p>
You can enable or disable location services when you
use our Service at any time by way of your device
settings.
</p>
</li>
<li>
<p><b>Tracking Cookies Data</b></p>
<p>
We use cookies and similar tracking technologies to
track the activity on our Service and we hold
certain information.
</p>
<p>
Cookies are files with a small amount of data which
may include an anonymous unique identifier. Cookies
are sent to your browser from a website and stored
on your device. Other tracking technologies are also
used such as beacons, tags and scripts to collect
and track information and to improve and analyze our
Service.
</p>
<p>
You can instruct your browser to refuse all cookies
or to indicate when a cookie is being sent. However,
if you do not accept cookies, you may not be able to
use some portions of our Service.
</p>
<p>Examples of Cookies we use:</p>
<br />
<ul>
<li>
<p>
<b>Session Cookies:</b> We use Session Cookies
to operate our Service.
</p>
</li>
<li>
<p>
<b>Preference Cookies:</b> We use Preference
Cookies to remember your preferences and various
settings.
</p>
</li>
<li>
<p>
<b>Security Cookies:</b> We use Security Cookies
for security purposes.
</p>
</li>
<li>
<p>
<b>Advertising Cookies:</b> Advertising Cookies
are used to serve you with advertisements that
may be relevant to you and your interests
</p>
</li>
</ul>
</li>
<li>
<p><b>Other data</b></p>
</li>
</ol>
</li>
</ol>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy4"
class="collapsed question"
>
Usage Of Data
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy4"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p class="fst-italic">
<b
>SpicyDevs uses the collected data for various
purposes:</b
>
</p>
<ol type="I">
<li><p>To provide and maintain our Service;</p></li>
<li><p>To notify you about changes to our Service;</p></li>
<li>
<p>
To allow you to participate in interactive features of
our Service when you choose to do so;
</p>
</li>
<li><p>To provide customer support;</p></li>
<li>
<p>
To gather analysis or valuable information so that we
can improve our Service;
</p>
</li>
<li><p>To monitor the usage of our Service;</p></li>
<li>
<p>To detect, prevent and address technical issues;</p>
</li>
<li>
<p>
To fulfill any other purpose for which you provide it;
</p>
</li>
<li>
<p>
To carry out our obligations and enforce our rights
arising from any contracts entered into between you and
us, including for billing and collection;
</p>
</li>
<li>
<p>
To provide you with notices about your account and/or
subscription, including expiration and renewal notices,
email instructions, etc.;
</p>
</li>
<li>
<p>
To provide you with news, special offers, and general
information about other goods, services, and events
which we offer that are similar to those that you have
already purchased or enquired about unless you have
opted not to receive such information;
</p>
</li>
<li>
<p>
In any other way we may describe when you provide the
information;
</p>
</li>
<li><p>For any other purpose with your consent.</p></li>
</ol>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy5"
class="collapsed question"
>
Retention of Data
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy5"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p>
We will retain your Personal Data only for as long as is
necessary for the purposes set out in this Privacy Policy.
We will retain and use your Personal Data to the extent
necessary to comply with our legal obligations (for example,
if we are required to retain your data to comply with
applicable laws), resolve disputes, and enforce our legal
agreements and policies.
</p>
<p>
We will also retain Usage Data for internal analysis
purposes. Usage Data is generally retained for a shorter
period, except when this data is used to strengthen the
security or to improve the functionality of our Service, or
we are legally obligated to retain this data for longer time
periods.
</p>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy6"
class="collapsed question"
>
Transfer of Data
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy6"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p>
Your information, including Personal Data, may be
transferred to – and maintained on – computers located
outside of your state, province, country or other
governmental jurisdiction where the data protection laws may
differ from those of your jurisdiction.
</p>
<p>
If you are located outside India and choose to provide
information to us, please note that we transfer the data,
including Personal Data, to India and process it there.
</p>
<p>
Your consent to this Privacy Policy followed by your
submission of such information represents your agreement to
that transfer.
</p>
<p>
SpicyDevs will take all the steps reasonably necessary to
ensure that your data is treated securely and in accordance
with this Privacy Policy and no transfer of your Personal
Data will take place to an organization or a country unless
there are adequate controls in place including the security
of your data and other personal information.
</p>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy7"
class="collapsed question"
>
Disclosure of Data
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy7"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p class="fst-italic">
<b
>We may disclose personal information that we collect, or
you provide:</b
>
</p>
<ol type="I">
<li>
<p><b>Disclosure for Law Enforcement:</b></p>
<p>
Under certain circumstances, we may be required to
disclose your Personal Data if required to do so by law
or in response to valid requests by public authorities.
</p>
</li>
<li>
<p><b>Business Transaction:</b></p>
<p>
If we or our subsidiaries are involved in a merger,
acquisition or asset sale, your Personal Data may be
transferred.
</p>
</li>
<li>
<p>
<b
>Other cases. We may disclose your information
also:</b
>
</p>
<ol type="i">
<li><p>To our subsidiaries and affiliates;</p></li>
<li>
<p>
To contractors, service providers, and other third
parties we use to support our business;
</p>
</li>
<li>
<p>
To fulfill the purpose for which you provide it;
</p>
</li>
<li>
<p>
For the purpose of including your company’s logo on
our website;
</p>
</li>
<li>
<p>
For any other purpose disclosed by us when you
provide the information;
</p>
</li>
<li><p>With your consent in any other cases;</p></li>
<li>
<p>
If we believe disclosure is necessary or appropriate
to protect the rights, property, or safety of the
Company, our customers, or others.
</p>
</li>
</ol>
</li>
</ol>
</div>
</li>
<li>
<div
data-bs-toggle="collapse"
href="#privacy-policy8"
class="collapsed question"
>
Security of Data
<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div
id="privacy-policy8"
class="collapse"
data-bs-parent=".privacy-policy-list"
>
<p>
The security of your data is important to us but remember
that no method of transmission over the Internet or method
of electronic storage is 100% secure. While we strive to use
commercially acceptable means to protect your Personal Data,
we cannot guarantee its absolute security.
</p>
<ol type="I">
<li>
<p>
<b
>Your Data Protection Rights Under General Data
Protection Regulation (GDPR):</b
>
</p>
<p>
Under certain circumstances, we may be required to
disclose your Personal Data if required to do so by law
or in response to valid requests by public authorities.
</p>
<ol type="i">
<li>
<p>
If you are a resident of the European Union (EU) and
European Economic Area (EEA), you have certain data
protection rights, covered by GDPR.
</p>
</li>
<li>
<p>
We aim to take reasonable steps to allow you to
correct, amend, delete, or limit the use of your
Personal Data.
</p>
</li>
<li>
<p>
If you wish to be informed what Personal Data we
hold about you and if you want it to be removed from
our systems, please email us at
<b
><a href="mailto:hello@spicy.is-a.dev"
>hello@spicy.is-a.dev</a
></b
>.
</p>
</li>
</ol>
<p class="fst-italic">
<li>
<b>
In certain circumstances, you have the following
data protection rights:</b
>
</li>
</p>
<ol type="i">
<li>
<p>
The right to access, update or delete the
information we have on you;
</p>
</li>
<li>
<p>
The right of rectification. You have the right to
have your information rectified if that information
is inaccurate or incomplete;
</p>
</li>
<li>
<p>
The right to object. You have the right to object to
our processing of your Personal Data;
</p>
</li>
<li>
<p>
The right of restriction. You have the right to
request that we restrict the processing of your
personal information;
</p>
</li>
<li>
<p>
The right to data portability. You have the right to
be provided with a copy of your Personal Data in a
structured, machine-readable, and commonly used
format;
</p>
</li>
<li>
<p>
The right to withdraw consent. You also have the
right to withdraw your consent at any time when we
rely on your consent to process your personal
information;
</p>
</li>
<li>
<p>
Please note that we may ask you to verify your
identity before responding to such requests. Please
note, that we may not able to provide Service
without some necessary data.
</p>
</li>
<li>
<p>
You have the right to complain to a Data Protection
Authority about our collection and use of your
Personal Data. For more information, please contact
your local data protection authority in the European
Economic Area (EEA).
</p>
</li>
</ol>
</li>
<li>
<p>
<b
>Your Data Protection Rights under the California
Privacy Protection Act (CalOPPA):</b
>
</p>
<p>
CalOPPA is the first state law in the nation to require
commercial websites and online services to post a
privacy policy. The law’s reach stretches well beyond
California to require a person or company in the United
States (and conceivable the world) that operates
websites collecting personally identifiable information
from California consumers to post a conspicuous privacy
policy on its website stating exactly the information
being collected and those individuals with whom it is
being shared and to comply with this policy.
</p>
<p class="fst-italic">
<b>According to CalOPPA we agree to the following:</b>
</p>
<br />
<ol type="i">
<li><p>Users can visit our site anonymously;</p></li>
<li>
<p>
Uur Privacy Policy link includes the word “Privacy”,
and can easily be found on the home page of our
website;
</p>
</li>
<li>
<p>
Users will be notified of any privacy policy changes
on our Privacy Policy Page;
</p>
</li>
<li>
<p>
Users are able to change their personal information
by emailing us at
<a href="mailto:hello@spicy.is-a.dev"
><b>hello@spicy.is-a.dev</b></a
>.
</p>
</li>
<li><p>Our Policy on “Do Not Track” Signals:</p></li>
<li>
<p>
We honor Do Not Track signals and do not track plant
cookies, or use advertising when a Do Not Track
browser mechanism is in place. Do Not Track is a
preference you can set in your web browser to inform
websites that you do not want to be tracked.
</p>
</li>
<li>
<p>
You can enable or disable Do Not Track by visiting
the Preferences or Settings page of your web
browser.
</p>
</li>
</ol>
</li>
<li>
<p>
<b
>Your Data Protection Rights under the California
Consumer Privacy Act (CCPA)</b
>
</p>
<p>
If you are a California resident, you are entitled to
learn what data we collect about you, ask to delete your
data, and not to sell (share) it. To exercise your data
protection rights, you can make certain requests and ask
us:
</p>
<ol type="i">
<li>
<p>
<b
>What personal information do we have about you?
If you make this request, we will return to
you:</b
>
</p>
<ol type="a">
<li>
<p>
The categories of personal information we have
collected about you.
</p>
</li>
<li>
<p>
The categories of sources from which we collect
your personal information.
</p>
</li>
<li>
<p>
The business or commercial purpose for
collecting or selling your personal information.
</p>
</li>
<li>
<p>
The categories of third parties with whom we
share personal information.
</p>
</li>
<li>
<p>
The specific pieces of personal information we
have collected about you.
</p>
</li>
<li>
<p>
A list of categories of personal information
that we have sold, along with the category of
any other company we sold it to. If we have not
sold your personal information, we will inform
you of that fact.
</p>
</li>
<li>
<p>
A list of categories of personal information
that we have disclosed for a business purpose,
along with the category of any other company we
shared it with.
</p>
</li>
</ol>
</li>
</ol>
</li>
<p>
Please note, that you are entitled to ask us to provide
you with this information up to two times in a rolling
twelve-month period. When you make this request, the
information provided may be limited to the personal
information we collected about you in the previous 12