mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
## Description Support setting a document language that will control the language used for sending emails to recipients. Additional work has been done to convert all emails to using our i18n implementation so we can later add controls for sending other kinds of emails in a users target language. ## Related Issue N/A ## Changes Made - Added `<Trans>` and `msg` macros to emails - Introduced a new `renderEmailWithI18N` utility in the lib package - Updated all emails to use the `<Tailwind>` component at the top level due to rendering constraints - Updated the `i18n.server.tsx` file to not use a top level await ## Testing Performed - Configured document language and verified emails were sent in the expected language - Created a document from a template and verified that the templates language was transferred to the document
224 lines
8.7 KiB
TypeScript
224 lines
8.7 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import Link from 'next/link';
|
|
|
|
import { Trans } from '@lingui/macro';
|
|
|
|
import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server';
|
|
import {
|
|
Accordion,
|
|
AccordionContent,
|
|
AccordionItem,
|
|
AccordionTrigger,
|
|
} from '@documenso/ui/primitives/accordion';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
import { Enterprise } from '~/components/(marketing)/enterprise';
|
|
import { PricingTable } from '~/components/(marketing)/pricing-table';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Pricing',
|
|
};
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export type PricingPageProps = {
|
|
searchParams?: {
|
|
planId?: string;
|
|
email?: string;
|
|
name?: string;
|
|
cancelled?: string;
|
|
};
|
|
};
|
|
|
|
export default async function PricingPage() {
|
|
await setupI18nSSR();
|
|
|
|
return (
|
|
<div className="mt-6 sm:mt-12">
|
|
<div className="text-center">
|
|
<h1 className="text-3xl font-bold lg:text-5xl">
|
|
<Trans>Pricing</Trans>
|
|
</h1>
|
|
|
|
<p className="text-foreground mt-4 text-lg leading-normal">
|
|
<Trans>Designed for every stage of your journey.</Trans>
|
|
</p>
|
|
<p className="text-foreground text-lg leading-normal">
|
|
<Trans>Get started today.</Trans>
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-12">
|
|
<PricingTable />
|
|
</div>
|
|
|
|
<div className="mt-12">
|
|
<Enterprise />
|
|
</div>
|
|
|
|
<div className="mx-auto mt-36 max-w-2xl">
|
|
<h2 className="text-center text-2xl font-semibold">
|
|
<Trans>None of these work for you? Try self-hosting!</Trans>
|
|
</h2>
|
|
|
|
<p className="text-muted-foreground mt-4 text-center leading-relaxed">
|
|
<Trans>
|
|
Our self-hosted option is great for small teams and individuals who need a simple
|
|
solution. You can use our docker based setup to get started in minutes. Take control
|
|
with full customizability and data ownership.
|
|
</Trans>
|
|
</p>
|
|
|
|
<div className="mt-4 flex justify-center">
|
|
<Button variant="outline" size="lg" className="rounded-full hover:cursor-pointer" asChild>
|
|
<Link href="https://github.com/documenso/documenso" target="_blank" rel="noreferrer">
|
|
<Trans>Get Started</Trans>
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mx-auto mt-36 max-w-2xl">
|
|
{/* FAQ Section */}
|
|
|
|
<h2 className="text-4xl font-semibold">FAQs</h2>
|
|
|
|
<Accordion type="multiple" className="mt-8">
|
|
<AccordionItem value="plan-differences">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>What is the difference between the plans?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
You can self-host Documenso for free or use our ready-to-use hosted version. The
|
|
hosted version comes with additional support, painless scalability and more. Early
|
|
adopters will get access to all features we build this year, for no additional cost!
|
|
Forever! Yes, that includes multiple users per account later. If you want Documenso
|
|
for your enterprise, we are happy to talk about your needs.
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem value="data-handling">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>How do you handle my data?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
Securely. Our data centers are located in Frankfurt (Germany), giving us the best
|
|
local privacy laws. We are very aware of the sensitive nature of our data and follow
|
|
best practices to ensure the security and integrity of the data entrusted to us.
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem value="should-use-cloud">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>Why should I use your hosting service?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
Using our hosted version is the easiest way to get started, you can simply subscribe
|
|
and start signing your documents. We take care of the infrastructure, so you can
|
|
focus on your business. Additionally, when using our hosted version you benefit from
|
|
our trusted signing certificates which helps you to build trust with your customers.
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem value="how-to-contribute">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>How can I contribute?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
That's awesome. You can take a look at the current{' '}
|
|
<Link
|
|
className="text-documenso-700 font-bold"
|
|
href="https://github.com/documenso/documenso/milestones"
|
|
target="_blank"
|
|
>
|
|
Issues
|
|
</Link>{' '}
|
|
and join our{' '}
|
|
<Link
|
|
className="text-documenso-700 font-bold"
|
|
href="https://documen.so/discord"
|
|
target="_blank"
|
|
>
|
|
Discord Community
|
|
</Link>{' '}
|
|
to keep up to date, on what the current priorities are. In any case, we are an open
|
|
community and welcome all input, technical and non-technical ❤️
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem value="can-i-use-documenso-commercially">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>Can I use Documenso commercially?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
Yes! Documenso is offered under the GNU AGPL V3 open source license. This means you
|
|
can use it for free and even modify it to fit your needs, as long as you publish
|
|
your changes under the same license.
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem value="why-prefer-documenso">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>Why should I prefer Documenso over DocuSign or some other signing tool?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
Documenso is a community effort to create an open and vibrant ecosystem around a
|
|
tool, everybody is free to use and adapt. By being truly open we want to create
|
|
trusted infrastructure for the future of the internet.
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem value="where-can-i-get-support">
|
|
<AccordionTrigger className="text-left text-lg font-semibold">
|
|
<Trans>Where can I get support?</Trans>
|
|
</AccordionTrigger>
|
|
|
|
<AccordionContent className="text-muted-foreground max-w-prose text-sm leading-relaxed">
|
|
<Trans>
|
|
We are happy to assist you at{' '}
|
|
<Link
|
|
className="text-documenso-700 font-bold"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
href="mailto:support@documenso.com"
|
|
>
|
|
support@documenso.com
|
|
</Link>{' '}
|
|
or{' '}
|
|
<a
|
|
className="text-documenso-700 font-bold"
|
|
href="https://documen.so/discord"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
in our Discord-Support-Channel
|
|
</a>{' '}
|
|
please message either Lucas or Timur to get added to the channel if you are not
|
|
already a member.
|
|
</Trans>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|