Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export const footerData = {
{ text: 'Get Lychee <span class="text-sky-500">SE</span>', href: 'https://lycheeorg.dev/get-supporter-edition' },
{ text: 'GitHub sponsor', href: 'https://github.com/sponsors/LycheeOrg' },
{ text: 'Open Collective', href: 'https://opencollective.com/LycheeOrg' },
{ text: 'Translations', href: 'https://weblate.lycheeorg.dev' },
Comment thread
ildyria marked this conversation as resolved.
],
},
{
Expand Down
22 changes: 21 additions & 1 deletion src/pages/support.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
// import Features2 from '~/components/widgets/Features2.astro';
// import Features3 from '~/components/widgets/Features3.astro';
// import Features from '~/components/widgets/Features.astro';
import Headline from '~/components/blog/Headline.astro';
import Button from '~/components/ui/Button.astro';
import WidgetWrapper from '~/components/ui/WidgetWrapper.astro';
import CallToAction2 from '~/components/widgets/CallToAction.astro';
import Features from '~/components/widgets/Features.astro';
import Features2 from '~/components/widgets/Features2.astro';
import Features3 from '~/components/widgets/Features3.astro';
import Features5 from '~/components/widgets/Features5.astro';
Expand Down Expand Up @@ -272,5 +276,21 @@ const metadata = {
},
]}
/>
<!-- </div> -->

<div class=`max-w-3xl mx-auto text-center p-6 rounded-md dark:shadow-none dark:border dark:border-slate-600`>
<div class="mb-4 md:mb-8 text-center max-w-3xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold leading-tighter tracking-tighter font-heading" set:html={'Translation efforts'} />
<div class="mt-2 md:mt-3 mx-auto text-xl text-gray-500 dark:text-slate-400 font-medium" set:html={'It only takes a little bit of your time, but it greatly helps us.'} />
</div>
<a href="http://weblate.lycheeorg.dev/engage/lycheeorg/" class="flex justify-center">
<img src="http://weblate.lycheeorg.dev/widget/lycheeorg/multi-auto.svg" class="w-full" alt="Translation status" />
</a>
<div class="flex w-full sm:w-auto my-4 justify-center">
<Button
variant='secondary'
text='Translate now'
href='https://weblate.lycheeorg.dev'
icon='tabler:language' class="w-full max-w-sm sm:mb-0" />
</div>
</div>
</Layout>