Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Oct 11, 2024
1 parent 28f61a9 commit f324131
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/pages/get-supporter-edition.astro
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ const metadata = {
period: 'per month',
items: [
{
description: 'Unlimited albums.',
description: 'Unlimited users.',
},
{
description: 'Unlimited users.',
description: 'Unlimited albums.',
},
{
description: 'Unlimited photos upload.',
Expand All @@ -70,15 +70,18 @@ const metadata = {
price: 5,
period: 'Per Month',
items: [
{
description: 'Unlimited albums.',
},
{
description: 'Unlimited users.',
},
{
description: 'Unlimited albums.',
},
{
description: 'Unlimited photos upload.',
},
{
description: 'Statistics on your library.',
},
{
description: 'more to come...',
icon: 'tabler:question-mark',
Expand All @@ -91,15 +94,15 @@ const metadata = {
],
callToAction: {
target: '_blank',
text: 'Get started',
href: '#',
text: 'Support us!',
href: 'https://github.com/sponsors/LycheeOrg',
},
hasRibbon: true,
ribbonTitle: 'popular',
}
]}
/>

<!-- TODO : add table with all the functionalities of Lychee detailed. -->
<FAQs
title="FAQs"
subtitle="With the new <span class='font-bold'>Lychee <span class='text-sky-600'>SE</span></span> coming soon, we understand that you must have some questions. We try to answer some of them here."
Expand Down
11 changes: 11 additions & 0 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,3 +297,14 @@ export interface Content3 extends Omit<Headline, 'classes'>, Widget {
}

export interface Contact extends Omit<Headline, 'classes'>, Form, Widget {}

export interface Spec {
type: string;
values?: string[];
available?: boolean[];
}

export interface Products {
products: string[];
}

0 comments on commit f324131

Please sign in to comment.