From 973b916301b69697b5fcf6ea903e33d48ed81dbb Mon Sep 17 00:00:00 2001 From: senthil-k8s Date: Sun, 6 Aug 2023 20:43:35 +0530 Subject: [PATCH] feat(community): community video container --- src/components/CommunityVideos/index.jsx | 113 ++++++++++++++++++++++- src/views/app/CommunityLanding/index.jsx | 2 + 2 files changed, 114 insertions(+), 1 deletion(-) diff --git a/src/components/CommunityVideos/index.jsx b/src/components/CommunityVideos/index.jsx index 7c1c16c..7a811a9 100644 --- a/src/components/CommunityVideos/index.jsx +++ b/src/components/CommunityVideos/index.jsx @@ -1,7 +1,118 @@ import React from "react"; +import { + anime1, + anime2, + anime3, + news1, + news2, + news3, + video1, + video2, + video3, +} from "../../assets"; const CommunityVideos = () => { - return
index
; + return ( +
+
+
+ | +

Latest

+ Videos +
+
+

+ Learn more about Fashion Froze 3D
+ Watch tutorials, catch up with
+ event recaps and more. +

+
+ +
+
+
+
+ +

+ Branding +

+

+ Building a Brand From Scratch: Tips and Insights for Success +

+
+
+ + {" "} + {" "} + +

May 30, 2023.

+
+
+
+
+ +

+ Marketing +

+

+ Engaging with Your Audience: Strategies for Building Connections +

+
+
+ + {" "} + {" "} + +

July 02, 2023.

+
+
+
+
+ +

+ Content +

+

+ Unlocking Success with Digital Content: Strategies for Maximum + Engagement +

+
+
+ + {" "} + {" "} + +

Aug 01, 2023.

+
+
+
+
+
+
+ ); }; export default CommunityVideos; diff --git a/src/views/app/CommunityLanding/index.jsx b/src/views/app/CommunityLanding/index.jsx index 066cad7..06147ad 100644 --- a/src/views/app/CommunityLanding/index.jsx +++ b/src/views/app/CommunityLanding/index.jsx @@ -3,6 +3,7 @@ import HomeLayout from "../../../layout/HomeLayout.jsx"; import CommunityLanding from "../../../pages/CommunityLanding/index.jsx"; import Ambassador from "../../../components/Ambassador/index.jsx"; import CommmunityNews from "../../../components/CommunityNews/index.jsx"; +import CommunityVideos from "../../../components/CommunityVideos/index.jsx"; function Guide() { return ( @@ -10,6 +11,7 @@ function Guide() { + ); }