From e2c16ba26decc7b3dcc84a188bdbe0583f492841 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 14 Nov 2020 22:28:45 +0300 Subject: feat: create blank sections --- src/containers/BsuFantomSection/BsuFantomSection.tsx | 14 ++++++++++++++ src/containers/LoginSection/LoginSection.tsx | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 src/containers/BsuFantomSection/BsuFantomSection.tsx create mode 100644 src/containers/LoginSection/LoginSection.tsx (limited to 'src/containers') diff --git a/src/containers/BsuFantomSection/BsuFantomSection.tsx b/src/containers/BsuFantomSection/BsuFantomSection.tsx new file mode 100644 index 0000000..119b2ae --- /dev/null +++ b/src/containers/BsuFantomSection/BsuFantomSection.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import { ContentSection } from 'react-benzin'; +import { Link } from '@material-ui/core'; + +const BsuFantomSection: React.FC = () => { + + return ( + + Schedule your offline EDUFPMI conference attendance + + ); +}; + +export default BsuFantomSection; diff --git a/src/containers/LoginSection/LoginSection.tsx b/src/containers/LoginSection/LoginSection.tsx new file mode 100644 index 0000000..c7e2785 --- /dev/null +++ b/src/containers/LoginSection/LoginSection.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import { ContentSection } from 'react-benzin'; +import { Link } from '@material-ui/core'; + +const LoginSection: React.FC = () => { + + return ( + + Log in using your EDUFPMI credentials + + ); +}; + +export default LoginSection; -- cgit v1.2.3