diff --git a/src/Containers/TrustUs/trustUs.css b/src/Containers/TrustUs/trustUs.css new file mode 100644 index 0000000..793682b --- /dev/null +++ b/src/Containers/TrustUs/trustUs.css @@ -0,0 +1,3 @@ +.TrustContainer{ + margin-top:25px; +} \ No newline at end of file diff --git a/src/Containers/TrustUs/trustUs.js b/src/Containers/TrustUs/trustUs.js new file mode 100644 index 0000000..67e2304 --- /dev/null +++ b/src/Containers/TrustUs/trustUs.js @@ -0,0 +1,13 @@ +import React from "react"; + +import './trustUs.css'; + +const TrustUsContainer = () => { + return( +
+ تراست +
+ ); +}; + +export default TrustUsContainer; \ No newline at end of file diff --git a/src/Pages/Home/Home.js b/src/Pages/Home/Home.js index 5e568b6..7a73c05 100644 --- a/src/Pages/Home/Home.js +++ b/src/Pages/Home/Home.js @@ -1,5 +1,6 @@ import React from 'react'; import DesktopMenu from '../../Components/navBar/desktopMenu'; +import TrustUsContainer from '../../Containers/TrustUs/trustUs'; import './Home.css'; import HomePart1 from './Part1/homePart1'; @@ -8,6 +9,7 @@ const HomePage = () =>{
+
) };