diff --git a/src/Components/Content/index.tsx b/src/Components/Content/index.tsx index d7920a9..98e1f6e 100644 --- a/src/Components/Content/index.tsx +++ b/src/Components/Content/index.tsx @@ -1,6 +1,6 @@ import * as React from "react"; import { Box } from "@mui/material"; -import Users from "../Users"; +import Tariffs from "../Tariffs/"; const Content: React.FC = () => { @@ -16,7 +16,7 @@ const Content: React.FC = () => { overflowY: "auto", padding: "60px" }}> - + ); diff --git a/src/Components/Tariffs/Contractor/index.tsx b/src/Components/Tariffs/Contractor/index.tsx new file mode 100644 index 0000000..f9c11f6 --- /dev/null +++ b/src/Components/Tariffs/Contractor/index.tsx @@ -0,0 +1,106 @@ +import * as React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import theme from "../../../theme"; + + +const Contractor: React.FC = () => { + return ( + + + Сокращатель ссылок + + + + + + + + + + + ); +} + + +export default Contractor; \ No newline at end of file diff --git a/src/Components/Tariffs/Quiz/index.tsx b/src/Components/Tariffs/Quiz/index.tsx new file mode 100644 index 0000000..268b688 --- /dev/null +++ b/src/Components/Tariffs/Quiz/index.tsx @@ -0,0 +1,78 @@ +import * as React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import theme from "../../../theme"; + + +const Quiz: React.FC = () => { + return ( + + + Опросник + + + + + + + + + ); +} + + +export default Quiz; \ No newline at end of file diff --git a/src/Components/Tariffs/Templater/index.tsx b/src/Components/Tariffs/Templater/index.tsx new file mode 100644 index 0000000..0a1a63f --- /dev/null +++ b/src/Components/Tariffs/Templater/index.tsx @@ -0,0 +1,92 @@ +import * as React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import theme from "../../../theme"; + + +const Templater: React.FC = () => { + return ( + + + Шаблонизатор документов + + + + + + + + + + ); +} + + +export default Templater; \ No newline at end of file diff --git a/src/Components/Tariffs/index.tsx b/src/Components/Tariffs/index.tsx new file mode 100644 index 0000000..cc9540b --- /dev/null +++ b/src/Components/Tariffs/index.tsx @@ -0,0 +1,28 @@ +import * as React from "react"; +import { Box } from "@mui/material"; +import Templater from "./Templater"; +import Quiz from "./Quiz"; +import Contractor from "./Contractor"; +import theme from "../../theme"; + + +const Tariffs: React.FC = () => { + return ( + + + + + + + + ); +} + + +export default Tariffs; \ No newline at end of file diff --git a/src/index.tsx b/src/index.tsx index 027873b..daa1079 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -16,6 +16,7 @@ root.render( } /> } /> } /> + } /> } />