16 lines
493 B
TypeScript
16 lines
493 B
TypeScript
import LICENSE from "lib/license.txt?raw";
|
|
|
|
export default function LicensePage() {
|
|
return (
|
|
<div className="dark:bg-[rgb(23,25,29)] dark:text-white min-h-screen w-screen overflow-x-hidden">
|
|
<main
|
|
className="relative h-full w-full md:w-3/4 lg:w-1/2 left-0 md:left-[12.5%] lg:left-1/4
|
|
pt-12"
|
|
>
|
|
<h1 className="text-4xl font-bold mb-6">LICENSE</h1>
|
|
<div className="font-mono text-justify whitespace-break-spaces">{LICENSE}</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|