cvsa/packages/next/app/[locale]/LICENSE/page.tsx

18 lines
648 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import HeaderServer from "@/components/shell/HeaderServer";
import tpLicense from "@/content/THIRD-PARTY-LICENSES.txt";
import projectLicense from "@/content/LICENSE.txt";
export default function LicensePage() {
return (
<>
<HeaderServer />
<main className="lg:max-w-4xl lg:mx-auto">
<p className="leading-10"> V AGPL 3.0 </p>
<pre className="break-all whitespace-pre-wrap">{projectLicense}</pre>
<p className="leading-10"></p>
<pre className="break-all whitespace-pre-wrap">{tpLicense}</pre>
</main>
</>
);
}