Additional project information
All checks were successful
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 3m33s

This commit is contained in:
Manuel Bustillo 2024-11-16 17:51:11 +01:00
parent ed58d15ea4
commit bf34f8f0dd
2 changed files with 37 additions and 21 deletions

View File

@ -25,7 +25,7 @@ const FeatureList: FeatureItem[] = [
),
},
{
title: 'Control expenses',
title: 'Expenses control',
imagePath: expensesFeatureImage,
description: (
<>
@ -42,18 +42,9 @@ const FeatureList: FeatureItem[] = [
</>
),
},
{
title: 'Free and Open Source',
imagePath: openSourceFeatureImage,
description: (
<>
Libre Wedding Planner is free software, licensed under the AGPLv3. You can use it, modify it, and distribute it according to the license terms. Please, find the source code links in the footer of this page.
</>
),
},
];
function Feature({title, imagePath, description}: FeatureItem) {
function Feature({ title, imagePath, description }: FeatureItem) {
return (
<div className={clsx('col')}>
<div className="text--center">
@ -80,6 +71,25 @@ export default function HomepageFeatures(): JSX.Element {
</div>
</div>
</section>
<h2>Free & Open Source Software</h2>
<section className={styles.project}>
<p>
This project was created to help individuals organize their own wedding, without the need to rely on proprietary software or services.
We firmly believe that the data related to your wedding should be owned by you, and not by a third party. For that reason, our
recommendation is that you host your own instance of Libre Wedding Planner, either at home, on your own server or on a cloud provider
of your choice.
</p>
<p>
However, we are well aware that most users don't have the technical skills or resources to host their own instance. For that reason,
we are working on a hosted version of Libre Wedding Planner you will be able to use <em>as a service</em> for an affordable fee. Still, we encourage you to
not use this service if you can host your own instance. We don't care, and don't need to know how much you're going to spend,
or who your guests are.
</p>
<p>
Libre Wedding Planner is free (as in freedom), open source software, licensed under the AGPLv3. You are free to download the source code, use it,
modify it, and distribute it according to the license terms. Please, find links to the source code in the footer of this page.
</p>
</section>
</>
);
}

View File

@ -15,3 +15,9 @@ h2 {
padding: 2rem;
font-size: 2rem;
}
.project {
padding: 2rem 0;
width: 60%;
margin: auto;
}