+ Convidar Participante
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+export default index;
diff --git a/src/pages/InviteUsers/styles.tsx b/src/pages/InviteUsers/styles.tsx
new file mode 100644
index 0000000..d993121
--- /dev/null
+++ b/src/pages/InviteUsers/styles.tsx
@@ -0,0 +1,44 @@
+import styled from 'styled-components';
+
+export const StyleInviteUsers = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+
+ margin-top: 4.375rem;
+
+ h1 {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 900;
+ font-size: 3.125rem;
+ color: #CECFD0;
+ }
+
+
+ .EmailAndPermission {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+
+ margin-top: 13.25rem;
+
+ align-items: flex-end;
+
+
+ Input {
+ margin-bottom: 2rem;
+ }
+
+ Button {
+ margin-top: 4rem;
+ width: 14.063rem;
+ }
+ }
+
+
+`;
+
+export default StyleInviteUsers;
diff --git a/src/pages/LandingPage/index.tsx b/src/pages/LandingPage/index.tsx
new file mode 100644
index 0000000..54871ed
--- /dev/null
+++ b/src/pages/LandingPage/index.tsx
@@ -0,0 +1,17 @@
+import React from 'react';
+
+import { ReactComponent as WorkInProgress } from 'assets/workInProgress.svg';
+
+import { Container } from './styles';
+
+const LandingPage = () => {
+ return (
+