-
Notifications
You must be signed in to change notification settings - Fork 8
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
113 additions
and
12 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
27 changes: 27 additions & 0 deletions
27
src/components/pages/ambassadors/ModalTermsAndConditions.tsx
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,27 @@ | ||
import { useStaticQuery, graphql } from 'gatsby' | ||
import Modal, { ModalProps } from '../../Modal' | ||
|
||
const ModalTermsAndConditions = ({ isOpen, setIsOpen }: ModalProps) => { | ||
const { modal } = useStaticQuery(graphql` | ||
query { | ||
modal: allMarkdownRemark(filter: { fileAbsolutePath: { regex: "/modals/ambassadors-terms.md/" } }) { | ||
nodes { | ||
frontmatter { | ||
title | ||
} | ||
html | ||
} | ||
} | ||
} | ||
`) | ||
|
||
const data = modal.nodes[0] | ||
|
||
return ( | ||
<Modal title={data.frontmatter.title} isOpen={isOpen} setIsOpen={setIsOpen}> | ||
<div dangerouslySetInnerHTML={{ __html: data.html }} /> | ||
</Modal> | ||
) | ||
} | ||
|
||
export default ModalTermsAndConditions |
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,29 @@ | ||
--- | ||
title: Alephium's Ambassador program - general terms | ||
--- | ||
|
||
## Eligibility | ||
|
||
Determinations of eligibility, score, and all terms related to the Ambassador Program are at the sole and final discretion of Alephium. | ||
|
||
Are not eligible to participate: | ||
|
||
- Individuals who have not reached legal majority age in their country of residence, | ||
- Individuals on sanctions lists or who are in countries listed on SECO’s sanctions list or where crypto-assets have been banned, | ||
- Alephium & affiliated entities employees, consultants and their families. | ||
|
||
## General Terms | ||
|
||
- Ambassadors take part in this program at their own risk and expense. | ||
- If selected, Ambassadors agree that the contractual relationship between them and Alephium is a 6 months duration contractual relationship that renews itself tacitly. The contractual relationship may be terminated by either party at any time upon written notice. | ||
- Ambassadors will be asked to sign a simple contract with their name, nationality and physical address. Failure to do so will result in forfeiture of the application. | ||
- If Ambassadors are unable to carry out the Services, they do not bear any liabilities but they will not be entitled to receive any Compensation. | ||
- Ambassadors are responsible for all taxes. | ||
- Ambassadors' contributions must not violate any law or compromise any data that is not theirs. | ||
- Ambassadors are responsible for notifying Alephium of any changes to their contact information. Failure to do so may lead to the forfeiture of any compensation participants may become eligible for and receive. | ||
|
||
Alephium reserves the right to discontinue the Program at any time without notice. | ||
|
||
## GDPR - Data Protection | ||
|
||
Alephium undertakes to store your personal data in a secured manner and to process your personal data with all appropriate care and attention in accordance with the Federal Data Protection Act, the Ordinance on the Federal Data Protection Act and the General Data Protection Regulation from the European Union. |
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