diff --git a/src/Components/Outro.js b/src/Components/Outro.js
new file mode 100644
index 0000000..3c77497
--- /dev/null
+++ b/src/Components/Outro.js
@@ -0,0 +1,60 @@
+import { Grid, Stack, Typography } from "@mui/material";
+import Box from "@mui/material/Box";
+import React from "react";
+
+const Outro = ({ TextTypography, ContainedButton, ButtonTypography }) => {
+ return (
+
+
+
+
+ Conheça o Whaticket
+
+
+ Cadastre-se gratuitamente e experimente 3 dias do Whaticket. Tenha
+ acesso a plataforma exclusiva. Aproveite!
+
+
+
+ Teste agora
+
+
+
+
+ );
+};
+
+export default Outro;
diff --git a/src/Page.js b/src/Page.js
index 2567a68..4de60b5 100644
--- a/src/Page.js
+++ b/src/Page.js
@@ -1,8 +1,7 @@
import * as React from "react";
-import Box from "@mui/material/Box";
-// import Icon from '@mui/material/Icon';
import Intro from "./Components/Intro";
+import Outro from "./Components/Outro";
import SinglePlace from "./Components/SinglePlace";
import PlansText from "./Components/PlansText";
import Cards from "./Components/Cards";
@@ -10,9 +9,6 @@ import Prices from "./Components/Prices";
import FriendlyInterface from "./Components/FriendlyInterface";
import WhaticketPrintScreen from "./Components/WhaticketPrintScreen";
-import Grid from "@mui/material/Grid";
-import { Stack, Typography } from "@mui/material";
-
const Page = ({
ContainedButton,
TextTypography,
@@ -49,56 +45,11 @@ const Page = ({
ContainedButton={ContainedButton}
ButtonTypography={ButtonTypography}
/>
-
-
-
-
- Conheça o Whaticket
-
-
- Cadastre-se gratuitamente e experimente 3 dias do Whaticket. Tenha
- acesso a plataforma exclusiva. Aproveite!
-
-
-
- Teste agora
-
-
-
-
+
>
);
};