diff --git a/src/assets/image/ambassador.png b/src/assets/image/ambassador.png new file mode 100644 index 0000000..f3b3020 Binary files /dev/null and b/src/assets/image/ambassador.png differ diff --git a/src/assets/image/news1.png b/src/assets/image/news1.png new file mode 100644 index 0000000..df2a40e Binary files /dev/null and b/src/assets/image/news1.png differ diff --git a/src/assets/image/news2.png b/src/assets/image/news2.png new file mode 100644 index 0000000..e25c96c Binary files /dev/null and b/src/assets/image/news2.png differ diff --git a/src/assets/image/news3.png b/src/assets/image/news3.png new file mode 100644 index 0000000..b0a12bf Binary files /dev/null and b/src/assets/image/news3.png differ diff --git a/src/assets/image/video1.png b/src/assets/image/video1.png new file mode 100644 index 0000000..240e756 Binary files /dev/null and b/src/assets/image/video1.png differ diff --git a/src/assets/image/video2.png b/src/assets/image/video2.png new file mode 100644 index 0000000..e6d1389 Binary files /dev/null and b/src/assets/image/video2.png differ diff --git a/src/assets/image/video3.png b/src/assets/image/video3.png new file mode 100644 index 0000000..a7b0761 Binary files /dev/null and b/src/assets/image/video3.png differ diff --git a/src/assets/index.js b/src/assets/index.js index 6bb867a..59b70ef 100644 --- a/src/assets/index.js +++ b/src/assets/index.js @@ -23,7 +23,16 @@ import newLogo from "../assets/image/newLogo.png"; import anime1 from "../assets/image/anime1.png"; import anime2 from "../assets/image/anime2.jpeg"; import anime3 from "../assets/image/anime3.png"; +import ambassador from "../assets/image/ambassador.png"; +import news1 from "../assets/image/news1.png"; +import news2 from "../assets/image/news2.png"; +import news3 from "../assets/image/news3.png"; +import video1 from "../assets/image/video1.png"; +import video2 from "../assets/image/video2.png"; +import video3 from "../assets/image/video3.png"; + export { + ambassador, anime1, anime2, anime3, @@ -37,6 +46,9 @@ export { stylishShirt, navTshirt, menuToggle, + news1, + news2, + news3, objectFoot, favicon, Card1, @@ -49,4 +61,7 @@ export { loginImgGif, googleImg, gssoc, + video1, + video2, + video3, }; diff --git a/src/components/Ambassador/index.jsx b/src/components/Ambassador/index.jsx new file mode 100644 index 0000000..008f131 --- /dev/null +++ b/src/components/Ambassador/index.jsx @@ -0,0 +1,30 @@ +import React from "react"; +import { ambassador } from "../../assets"; + +const Ambassador = () => { + return ( +
+
+
+ | +

Ambassador

+ Program +
+
+

+ Support the Fashion Froze core team through community and
+ marketing initiatives while accumulating rewards +

+
+ +
+
+ +
+
+ ); +}; + +export default Ambassador; diff --git a/src/components/CommunityNews/index.jsx b/src/components/CommunityNews/index.jsx new file mode 100644 index 0000000..d02bff2 --- /dev/null +++ b/src/components/CommunityNews/index.jsx @@ -0,0 +1,7 @@ +import React from "react"; + +const CommmunityNews = () => { + return
index
; +}; + +export default CommmunityNews; diff --git a/src/components/CommunityVideos/index.jsx b/src/components/CommunityVideos/index.jsx new file mode 100644 index 0000000..7c1c16c --- /dev/null +++ b/src/components/CommunityVideos/index.jsx @@ -0,0 +1,7 @@ +import React from "react"; + +const CommunityVideos = () => { + return
index
; +}; + +export default CommunityVideos; diff --git a/src/pages/CommunityLanding/index.jsx b/src/pages/CommunityLanding/index.jsx index 4d25f44..7feeffe 100644 --- a/src/pages/CommunityLanding/index.jsx +++ b/src/pages/CommunityLanding/index.jsx @@ -2,8 +2,8 @@ import React from "react"; const CommunityLanding = () => { return ( -
-
+
+

@@ -17,10 +17,10 @@ const CommunityLanding = () => {

-
+
-
- | +
+ |

Community

Platforms
diff --git a/src/views/app/CommunityLanding/index.jsx b/src/views/app/CommunityLanding/index.jsx index ad6d493..ec07df9 100644 --- a/src/views/app/CommunityLanding/index.jsx +++ b/src/views/app/CommunityLanding/index.jsx @@ -1,11 +1,13 @@ import React from "react"; import HomeLayout from "../../../layout/HomeLayout.jsx"; import CommunityLanding from "../../../pages/CommunityLanding/index.jsx"; +import Ambassador from "../../../components/Ambassador/index.jsx"; function Guide() { return ( + ); }