license.tsx
1
import React from "react";
2
import { License, Rights } from "@reactbd/core";
3
4
/**
5
*
6
*
7
*
8
*/
9
export default function LicensePage() {
10
11
// Things you are allowed to do
12
const allowed = [
"Use in unlimited personal & commercial projects",
"Modify and customize source code freely",
"Use for client work and freelance contracts",
"Publish hosted applications to the web",
17
];
18
19
// Things strictly prohibited
20
const notAllowed = [
"Re-selling as a UI kit, theme, or template",
"Open-sourcing the core uncompiled files",
"Use in a direct competitor's product",
"Sharing license keys or credentials",
25
];
26
27
// Detailed definitions and terms
28
return (

35
);
36
}