aboutsummaryrefslogtreecommitdiff
path: root/src/containers
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/BsuFantomSection/BsuFantomSection.tsx14
-rw-r--r--src/containers/LoginSection/LoginSection.tsx14
2 files changed, 28 insertions, 0 deletions
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 (
+ <ContentSection sectionName="bsu-fantom" level={1}>
+ Schedule your offline <Link href="https://edufpmi.bsu.by">EDUFPMI</Link> conference attendance
+ </ContentSection>
+ );
+};
+
+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 (
+ <ContentSection sectionName="Login" level={1}>
+ Log in using your <Link href="https://edufpmi.bsu.by">EDUFPMI</Link> credentials
+ </ContentSection>
+ );
+};
+
+export default LoginSection;