Created
November 20, 2018 12:53
-
-
Save pettaysergey/8a05d988f8a43ff23b25b2a5bbfb3f21 to your computer and use it in GitHub Desktop.
Foto-Print
This file contains hidden or 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
| import * as React from 'react'; | |
| import { NavLink } from 'react-router-dom'; | |
| const styles = require('./landingPage'); | |
| const notebook = require('../../images/notebook.png'); | |
| export default class AdminPart extends React.PureComponent<{}, any> { | |
| render() { | |
| return ( | |
| <div className={styles.adminPart}> | |
| <div className={styles.content}> | |
| <div className={styles.image}> | |
| <img src={notebook} alt="Notebook" /> | |
| </div> | |
| <h2>Фотосалонам</h2> | |
| <p> | |
| Для регистрации в системе FotoPrint Вам необходимо заполнить данные по | |
| ответственному лицу, обычно им является директор. По указанным данным будет | |
| отправляться только крайне важная информация. | |
| </p> | |
| <div className={styles.adminLinks}> | |
| <NavLink to={'/legal/users/rules'}>Оферта</NavLink> | |
| <a | |
| href="https://fotoprint.app/legal/partners/commercial_offer.pdf" | |
| target="_blank" | |
| > | |
| Коммерческое предложение | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment