-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
85 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
"title": "free", | ||
"description": "The Free Plan grants the user a non-exclusive, non-transferable license to use the dashboard template for personal or non-commercial purposes. Users are allowed to modify the template to suit their needs. However, this license does not permit the user to sublicense, sell, or distribute the template or any derivative works. The Free Plan also includes basic support via email. The license is valid as long as the user adheres to the terms of service." | ||
}, | ||
{ | ||
"title": "pro", | ||
"description": "The Pro Plan includes a non-exclusive, non-transferable license that allows the user to use the dashboard template for commercial purposes. Users can modify, customize, and create derivative works based on the template. The license permits the user to sublicense the template to clients or end-users. It also includes priority email support and grants access to premium features such as data export/import and the premium templates library. The license is valid for the subscribed period (monthly or annually) and automatically renews unless canceled." | ||
}, | ||
{ | ||
"title": "enterprise", | ||
"description": "The Enterprise Plan provides a comprehensive, non-exclusive, non-transferable license for large-scale commercial use. This license grants the user unlimited flexibility to modify, customize, and create derivative works from the dashboard template. Users can sublicense the template, access premium support with a dedicated account manager, and utilize advanced features like API access and integration support. The license includes 24/7 priority support and ensures the highest level of data security and compliance. The license is valid for the subscribed period (monthly or annually) and automatically renews unless canceled." | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import {Card as AntCard, Col, Row, RowProps} from "antd"; | ||
import {Card} from "../../components"; | ||
import LicenceData from "../../mocks/License.json" | ||
import {Typography} from "antd"; | ||
|
||
const ROW_PROPS: RowProps = { | ||
gutter: [ | ||
{xs: 8, sm: 16, md: 24, lg: 32}, | ||
{xs: 8, sm: 16, md: 24, lg: 32} | ||
] | ||
} | ||
|
||
const CorporateLicensePage = () => { | ||
return ( | ||
<div> | ||
<Row {...ROW_PROPS}> | ||
<Col span={24}> | ||
<Card title="licence comparisons"> | ||
{LicenceData.map(l => | ||
<AntCard title={`${l.title} plan license`} bordered={true} style={{marginBottom: "1rem"}}> | ||
<Typography.Text>{l.description}</Typography.Text> | ||
</AntCard> | ||
)} | ||
</Card> | ||
</Col> | ||
<Col span={24}> | ||
<Card title="general terms and conditions"> | ||
<ul> | ||
<li> | ||
All licenses are subject to adherence to the terms of service and acceptable use policies outlined by the provider. | ||
</li> | ||
<li> | ||
Users must not remove or alter any copyright notices or branding present in the template. | ||
</li> | ||
<li> | ||
Users are responsible for the content and data they upload or display using the dashboard template. | ||
</li> | ||
<li> | ||
The provider reserves the right to terminate the license in case of violation of terms or misuse of the template. | ||
</li> | ||
<li> | ||
Refunds are subject to the refund policy of the provider and are applicable within the specified period after the purchase. | ||
</li> | ||
</ul> | ||
</Card> | ||
</Col> | ||
</Row> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CorporateLicensePage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters