Skip to content

Commit 316462f

Browse files
ildyriad7415
andauthored
Join us (#178)
* join us * Update src/pages/support.astro Co-authored-by: Martin Stone <[email protected]> --------- Co-authored-by: Martin Stone <[email protected]>
1 parent 360a2c2 commit 316462f

File tree

2 files changed

+56
-6
lines changed

2 files changed

+56
-6
lines changed

src/pages/get-supporter-edition.astro

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const metadata = {
110110
title="Full comparison"
111111
tagline="the essentials and a few more"
112112
products={['Free', 'Lychee <span class="text-sky-600 dark:text-sky-300">SE</span>']}
113-
extra="<sup>*</sup>A lot of default values are still in English. Any pull requests with translation to your own language would help."
113+
extra="<sup>*</sup>A lot of default values are still in English. Any pull requests with translation to your own language would help.<br><sup>*</sup><sup>*</sup> This option is not available on <span class='text-sky-600 dark:text-sky-300'>SE</span> as they are already hidden."
114114
specs={[
115115
{
116116
feature: 'Global',
@@ -138,7 +138,7 @@ const metadata = {
138138
available: [true, true],
139139
},
140140
{
141-
feature: 'Hide Lychee <span class="text-sky-600 dark:text-sky-300">SE</span> call for actions.',
141+
feature: 'Hide Lychee <span class="text-sky-600 dark:text-sky-300">SE</span> call for actions <sup>*</sup><sup>*</sup>',
142142
available: [true, false],
143143
isV6: true,
144144
},
@@ -173,6 +173,11 @@ const metadata = {
173173
available: [true, true],
174174
isV6: true,
175175
},
176+
{
177+
feature: 'Slideshow',
178+
available: [true, true],
179+
isV6: true,
180+
},
176181

177182
{
178183
feature: 'Album management',
@@ -314,13 +319,23 @@ const metadata = {
314319
available: [true, true],
315320
},
316321
{
317-
feature: 'Maintenance page',
322+
feature: 'API documentation',
318323
available: [true, true],
319324
},
320325
{
321326
feature: 'Diagnostics tools',
322327
available: [true, true],
323328
},
329+
{
330+
feature: 'Maintenance page',
331+
available: [true, true],
332+
},
333+
{
334+
feature: 'Duplicates Finding',
335+
available: [true, true],
336+
isV6: true,
337+
isSoon: true,
338+
},
324339
{
325340
feature: 'Full manual settings control',
326341
available: [true, true],
@@ -329,7 +344,7 @@ const metadata = {
329344
feature: 'Statistics on your installation',
330345
available: [false, true],
331346
isV6: true,
332-
}
347+
},
333348
]}
334349
/>
335350

src/pages/support.astro

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// import Features3 from '~/components/widgets/Features3.astro';
44
// import Features from '~/components/widgets/Features.astro';
55
import CallToAction2 from '~/components/widgets/CallToAction.astro';
6+
import Features2 from '~/components/widgets/Features2.astro';
67
import Features3 from '~/components/widgets/Features3.astro';
78
import Features5 from '~/components/widgets/Features5.astro';
89
import Hero from '~/components/widgets/Hero.astro';
@@ -94,6 +95,25 @@ const metadata = {
9495
]}
9596
/>
9697

98+
<!-- <CallToAction2
99+
title="Support us!"
100+
subtitle="If you are using Lychee, a small token of gratitude will go a long way. You can support further development of Lychee on GitHub."
101+
actions={[
102+
// {
103+
// variant: 'secondary',
104+
// text: '<img src="https://next-images.opencollective.com/_next/image?url=%2Fstatic%2Fimages%2Foc-logo-watercolor-256.png&w=64&q=75" class="h-5 w-5 mr-2.5"/>Open Collective',
105+
// href: 'https://opencollective.com/LycheeOrg',
106+
// },
107+
{
108+
variant: 'secondary',
109+
text: 'GitHub sponsor',
110+
href: 'https://github.com/sponsors/LycheeOrg',
111+
icon: 'tabler:heart',
112+
},
113+
]}
114+
/> -->
115+
116+
97117
<CallToAction2
98118
classes={{container: 'bg-sky-400/10 !max-w-full', headline: 'bg-white'}}
99119
title="Support us!"
@@ -115,8 +135,23 @@ const metadata = {
115135
<!-- { text: 'GitHub sponsor', href: 'https://github.com/sponsors/LycheeOrg' },
116136
{ text: 'Open Collective', href: 'https://opencollective.com/LycheeOrg' }, -->
117137

118-
<div class=" scale-75">
138+
<Features2
139+
isBeforeContent
140+
title="Join the team!"
141+
subtitle="Whether you want to contribute or just help with reviewing pull requests, we would be happy to have you on board.<br><br>LycheeOrg works as a Do What You Want Structure."
142+
items={[
143+
{ icon: 'tabler:devices-check', title: 'If you feel like just doing reviews,', description: 'then just do that.', classes: {panel:'items-center'} },
144+
{ icon: 'tabler:devices-plus', title: 'If you feel like adding new functionalities,', description: 'then do that.', classes: {panel:'items-center', title: 'text-center', description: 'text-center'} },
145+
{ icon: 'tabler:bug-off', title: 'If you feel like fixing bugs,', description: 'then do that.', classes: {panel:'items-center', title: 'text-center', description: 'text-center'} },
146+
{ icon: 'tabler:hammer', title: 'if you feel like fixing things that annoy you,', description: 'then do that.', classes: {panel:'items-center', title: 'text-center', description: 'text-center'} },
147+
]}
148+
columns={2}
149+
>
150+
</Features2>
151+
152+
<!-- <div class=" scale-75"> -->
119153
<Features5
154+
classes={{container: 'scale-75'}}
120155
isAfterContent
121156
isBeforeContent
122157
title="Past Contributors"
@@ -213,5 +248,5 @@ const metadata = {
213248
},
214249
]}
215250
/>
216-
</div>
251+
<!-- </div> -->
217252
</Layout>

0 commit comments

Comments
 (0)