diff --git a/src/components/ui/ItemGrid.astro b/src/components/ui/ItemGrid.astro index fe560a38..ac60a7ff 100644 --- a/src/components/ui/ItemGrid.astro +++ b/src/components/ui/ItemGrid.astro @@ -44,7 +44,7 @@ const { )}
- {title &&

{title}

} + {title &&

} {description && (

- - - - - -

- - - - - - Supporter Edition', - subtitle: 'Optimal choice if you would like to support the development of Lychee.', - price: 5, - period: 'Per Month', - items: [ - { - description: 'Unlimited albums.', - }, - { - description: 'Unlimited users.', - }, - { - description: 'Unlimited photos upload.', - }, - { - description: 'more to come...', - icon: 'tabler:question-mark', - classes: { - icon_bg: 'bg-neutral-400', - icon: 'text-white', - description: 'text-neutral-400', - }, - }, - ], - callToAction: { - target: '_blank', - text: 'Get started', - href: '#', - }, - hasRibbon: true, - ribbonTitle: 'popular', - } - ]} - /> - - diff --git a/src/pages/get-supporter-edition.astro b/src/pages/get-supporter-edition.astro new file mode 100644 index 00000000..8361f9b9 --- /dev/null +++ b/src/pages/get-supporter-edition.astro @@ -0,0 +1,170 @@ +--- +import Layout from '~/layouts/PageLayout.astro'; + +import Hero from '~/components/widgets/Hero.astro'; +// import CallToAction from '~/components/widgets/CallToAction.astro'; +import Prices from '~/components/widgets/Pricing.astro'; +import FAQs from '~/components/widgets/FAQs.astro'; + +const metadata = { + title: 'Pre-Launch Landing Page', +}; +--- + + + + + + + +
+ + + + + + Supporter Edition', + subtitle: 'Optimal choice if you would like to support the development of Lychee.', + price: 5, + period: 'Per Month', + items: [ + { + description: 'Unlimited albums.', + }, + { + description: 'Unlimited users.', + }, + { + description: 'Unlimited photos upload.', + }, + { + description: 'more to come...', + icon: 'tabler:question-mark', + classes: { + icon_bg: 'bg-neutral-400', + icon: 'text-white', + description: 'text-neutral-400', + }, + }, + ], + callToAction: { + target: '_blank', + text: 'Get started', + href: '#', + }, + hasRibbon: true, + ribbonTitle: 'popular', + } + ]} + /> + + Free Edition is a great choice for personal use, offering unlimited albums, users, and photo uploads.
\ + Lychee SE includes all the features of the Free Edition, plus some exclusive features as a thank for supporting the development of Lychee.', + }, + { + title: 'I am running an old version of Lychee and I want to upgrade to version 6.
Will I be losing features if I do not use the Supporter Edition?', + description: + 'No. The version 6 of Lychee is pretty much the same as version 5 but with a different front-end. It is faster, more fluid, more reactive, and less buggy. \ + The Free version 6 has not been crippled to incentivise you to upgrade to Lychee SE. We are not in that kind of mindset. We want you to use Lychee, and we want you to be happy with it.', + }, + { + title: 'Is there a trial period for the Supporter Edition?', + description: + "Unfortunately, we do not offer trial periods nor refunds. For this reason we recommend you to try the Free Edition first to see if Lychee fits your needs as it already comes packed with a lot of features.", + }, + { + title: 'How do I register my Supporter Edition?', + description: + "Once you support us, you will get a personal license key that you can use in your Lychee instance to unlock the exclusive features.", + }, + { + title: 'Is there a limit on the number of Lychee instances I can use my license key on?', + description: + "No. You can use your personal license key on as any instances of Lychee that you run.", + }, + { + title: 'I want to contribute to Lychee, where does my code fall between the Free and the Supporter Edition?', + description: + "That is a good question, and it really boils down to what you are adding/modifying. Our general rule of thumb is that:\ +
    \ +
  • if you are adding a new feature to Lychee that is not already part of the core, \ + we will include it in the Free Edition.
  • \ +
  • If you are improving a feature that is part of the Free Edition, that improvement will be included in the Free Edition.
  • \ +
  • If you are improving a feature that is part of Lychee SE, that feature will have to stay in Lychee SE.
  • \ +
\ +

It is as simple as that and any other way would not be fair to our users.

" + }, + { + title: 'Is there a different code license between the Free and the Supporter Edition?', + description: + "No. The license is the same for both editions: the MIT license.\ + Lychee remain fully Open Source. And as crazy at it sounds, the code of the Supporter Edition is fully available on GitHub.", + } + // { + // title: 'Do the plans come with customer support?', + // description: + // 'Absolutely, all plans include access to our dedicated customer support to assist you with any queries or concerns.', + // }, + // { + // title: 'Can I switch between plans?', + // description: + // 'Certainly! You can easily upgrade or downgrade your plan, at any time, to find the one that best suits your evolving requirements.', + // }, + // { + // title: 'What payment methods do you accept?', + // description: + // 'We accept major credit cards and online payment methods to ensure a convenient and secure transaction process.', + // }, + ]} +/> + diff --git a/src/pages/index.astro b/src/pages/index.astro index 63176026..67a49e17 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -231,10 +231,10 @@ const metadata = {