@tsparticles/template-landing 4.1.3 → 4.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +3 -0
  3. package/package.json +4 -3
  4. package/template/angular/package.json +34 -0
  5. package/template/angular/src/app/app.component.css +265 -0
  6. package/template/angular/src/app/app.component.html +72 -0
  7. package/template/angular/src/app/app.component.ts +57 -0
  8. package/template/angular-confetti/package.json +36 -0
  9. package/template/angular-confetti/src/app/app.component.css +259 -0
  10. package/template/angular-confetti/src/app/app.component.html +66 -0
  11. package/template/angular-confetti/src/app/app.component.ts +49 -0
  12. package/template/angular-fireworks/package.json +36 -0
  13. package/template/angular-fireworks/src/app/app.component.css +259 -0
  14. package/template/angular-fireworks/src/app/app.component.html +66 -0
  15. package/template/angular-fireworks/src/app/app.component.ts +49 -0
  16. package/template/astro/package.json +21 -0
  17. package/template/astro/src/pages/index.astro +143 -0
  18. package/template/ember/app/templates/application.hbs +75 -0
  19. package/template/ember/package.json +19 -0
  20. package/template/inferno/package.json +23 -0
  21. package/template/inferno/src/App.css +259 -0
  22. package/template/inferno/src/App.tsx +126 -0
  23. package/template/jquery/package.json +23 -0
  24. package/template/jquery/src/main.ts +161 -0
  25. package/template/jquery/src/style.css +259 -0
  26. package/template/lit/package.json +22 -0
  27. package/template/lit/src/my-app.ts +146 -0
  28. package/template/nextjs/package.json +19 -0
  29. package/template/nextjs/src/app/page.tsx +155 -0
  30. package/template/nextjs/src/app/providers.tsx +15 -0
  31. package/template/nuxt2/package.json +17 -0
  32. package/template/nuxt2/pages/index.vue +375 -0
  33. package/template/nuxt3/app.vue +374 -0
  34. package/template/nuxt3/package.json +18 -0
  35. package/template/nuxt4/app.vue +374 -0
  36. package/template/nuxt4/package.json +18 -0
  37. package/template/preact/package.json +23 -0
  38. package/template/preact/src/App.css +259 -0
  39. package/template/preact/src/App.tsx +152 -0
  40. package/template/qwik/package.json +22 -0
  41. package/template/qwik/src/App.tsx +150 -0
  42. package/template/react/package.json +19 -0
  43. package/template/react/src/App.css +265 -0
  44. package/template/react/src/App.tsx +114 -0
  45. package/template/riot/package.json +22 -0
  46. package/template/riot/src/app.riot +123 -0
  47. package/template/solid/package.json +18 -0
  48. package/template/solid/src/App.tsx +170 -0
  49. package/template/solid/src/index.css +259 -0
  50. package/template/solid/src/main.tsx +9 -0
  51. package/template/stencil/package.json +16 -0
  52. package/template/stencil/src/components/app-home/app-home.tsx +135 -0
  53. package/template/svelte/package.json +20 -0
  54. package/template/svelte/src/App.svelte +424 -0
  55. package/template/svelte/src/main.ts +12 -0
  56. package/template/vanilla/LICENSE +21 -0
  57. package/template/vanilla/package.json +1 -1
  58. package/template/vue2/package.json +21 -0
  59. package/template/vue2/src/App.vue +376 -0
  60. package/template/vue3/package.json +19 -0
  61. package/template/vue3/src/App.vue +372 -0
  62. package/template/vue3/src/main.ts +14 -0
  63. package/template/webcomponents/package.json +21 -0
  64. package/template/webcomponents/src/main.ts +160 -0
  65. package/template/webcomponents/src/style.css +259 -0
@@ -0,0 +1,259 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ body {
8
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
9
+ color: #fff;
10
+ background: #080818;
11
+ overflow-x: hidden;
12
+ }
13
+
14
+ .section {
15
+ min-height: 100vh;
16
+ display: flex;
17
+ align-items: center;
18
+ justify-content: center;
19
+ padding: 4rem 1rem;
20
+ position: relative;
21
+ }
22
+
23
+ .container {
24
+ max-width: 1100px;
25
+ width: 100%;
26
+ margin: 0 auto;
27
+ text-align: center;
28
+ }
29
+
30
+ h2 {
31
+ font-size: 2.5em;
32
+ margin-bottom: 3rem;
33
+ background: linear-gradient(135deg, #6c5ce7, #00cec9);
34
+ -webkit-background-clip: text;
35
+ -webkit-text-fill-color: transparent;
36
+ background-clip: text;
37
+ }
38
+
39
+ #hero {
40
+ min-height: 100vh;
41
+ position: relative;
42
+ }
43
+
44
+ .hero-content {
45
+ text-align: center;
46
+ z-index: 10;
47
+ padding: 2rem;
48
+ }
49
+
50
+ .hero-content h1 {
51
+ font-size: 4em;
52
+ line-height: 1.1;
53
+ margin-bottom: 1rem;
54
+ }
55
+
56
+ .gradient-text {
57
+ background: linear-gradient(135deg, #6c5ce7, #fd79a8);
58
+ -webkit-background-clip: text;
59
+ -webkit-text-fill-color: transparent;
60
+ background-clip: text;
61
+ }
62
+
63
+ .hero-subtitle {
64
+ font-size: 1.3em;
65
+ opacity: 0.7;
66
+ margin-bottom: 2rem;
67
+ max-width: 600px;
68
+ margin-left: auto;
69
+ margin-right: auto;
70
+ }
71
+
72
+ .hero-cta {
73
+ display: flex;
74
+ gap: 1rem;
75
+ justify-content: center;
76
+ flex-wrap: wrap;
77
+ }
78
+
79
+ .btn {
80
+ padding: 0.8em 2em;
81
+ font-size: 1.1em;
82
+ font-weight: 600;
83
+ border-radius: 8px;
84
+ text-decoration: none;
85
+ transition: transform 0.2s, box-shadow 0.2s;
86
+ display: inline-block;
87
+ }
88
+
89
+ .btn:hover {
90
+ transform: translateY(-2px);
91
+ box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
92
+ }
93
+
94
+ .btn-primary {
95
+ background: linear-gradient(135deg, #6c5ce7, #a29bfe);
96
+ color: #fff;
97
+ }
98
+
99
+ .btn-secondary {
100
+ background: rgba(255, 255, 255, 0.1);
101
+ color: #fff;
102
+ border: 1px solid rgba(255, 255, 255, 0.2);
103
+ }
104
+
105
+ .btn-large {
106
+ padding: 1em 3em;
107
+ font-size: 1.2em;
108
+ }
109
+
110
+ .features-grid {
111
+ display: grid;
112
+ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
113
+ gap: 2rem;
114
+ }
115
+
116
+ .feature-card {
117
+ background: rgba(255, 255, 255, 0.03);
118
+ border: 1px solid rgba(255, 255, 255, 0.08);
119
+ border-radius: 16px;
120
+ padding: 2rem;
121
+ text-align: center;
122
+ transition: transform 0.3s, border-color 0.3s;
123
+ }
124
+
125
+ .feature-card:hover {
126
+ transform: translateY(-6px);
127
+ border-color: #6c5ce7;
128
+ }
129
+
130
+ .feature-icon {
131
+ font-size: 2.5em;
132
+ margin-bottom: 1rem;
133
+ }
134
+
135
+ .feature-card h3 {
136
+ margin-bottom: 0.5rem;
137
+ }
138
+
139
+ .feature-card p {
140
+ opacity: 0.7;
141
+ font-size: 0.95em;
142
+ }
143
+
144
+ .pricing-grid {
145
+ display: grid;
146
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
147
+ gap: 2rem;
148
+ align-items: center;
149
+ }
150
+
151
+ .pricing-card {
152
+ background: rgba(255, 255, 255, 0.03);
153
+ border: 1px solid rgba(255, 255, 255, 0.08);
154
+ border-radius: 16px;
155
+ padding: 2.5rem 2rem;
156
+ text-align: center;
157
+ }
158
+
159
+ .pricing-card.featured {
160
+ border-color: #6c5ce7;
161
+ background: rgba(108, 92, 231, 0.08);
162
+ transform: scale(1.05);
163
+ }
164
+
165
+ .price {
166
+ font-size: 3em;
167
+ font-weight: 700;
168
+ margin: 1rem 0;
169
+ }
170
+
171
+ .price span {
172
+ font-size: 0.4em;
173
+ opacity: 0.5;
174
+ font-weight: 400;
175
+ }
176
+
177
+ .pricing-card ul {
178
+ list-style: none;
179
+ margin: 1.5rem 0;
180
+ }
181
+
182
+ .pricing-card li {
183
+ padding: 0.4em 0;
184
+ opacity: 0.8;
185
+ }
186
+
187
+ .pricing-card li::before {
188
+ content: "✓ ";
189
+ color: #00cec9;
190
+ }
191
+
192
+ .testimonial-grid {
193
+ display: grid;
194
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
195
+ gap: 2rem;
196
+ }
197
+
198
+ .testimonial-card {
199
+ background: rgba(255, 255, 255, 0.03);
200
+ border: 1px solid rgba(255, 255, 255, 0.08);
201
+ border-radius: 16px;
202
+ padding: 2rem;
203
+ text-align: left;
204
+ }
205
+
206
+ .testimonial-card p {
207
+ font-style: italic;
208
+ font-size: 1.1em;
209
+ line-height: 1.6;
210
+ margin-bottom: 1rem;
211
+ }
212
+
213
+ .author {
214
+ opacity: 0.6;
215
+ font-size: 0.9em;
216
+ }
217
+
218
+ .cta-content h2 {
219
+ margin-bottom: 1rem;
220
+ }
221
+
222
+ .cta-content p {
223
+ font-size: 1.2em;
224
+ opacity: 0.7;
225
+ margin-bottom: 2rem;
226
+ }
227
+
228
+ #footer {
229
+ border-top: 1px solid rgba(255, 255, 255, 0.08);
230
+ padding: 2rem 1rem;
231
+ }
232
+
233
+ .footer-content {
234
+ display: flex;
235
+ justify-content: space-between;
236
+ align-items: center;
237
+ flex-wrap: wrap;
238
+ gap: 1rem;
239
+ }
240
+
241
+ .footer-content p {
242
+ opacity: 0.5;
243
+ font-size: 0.9em;
244
+ }
245
+
246
+ .footer-links {
247
+ display: flex;
248
+ gap: 1.5rem;
249
+ }
250
+
251
+ .footer-links a {
252
+ color: rgba(255, 255, 255, 0.6);
253
+ text-decoration: none;
254
+ font-size: 0.9em;
255
+ }
256
+
257
+ .footer-links a:hover {
258
+ color: #6c5ce7;
259
+ }