From 24d218aab5df4e2a3011025031fcdfe9de5d45cc Mon Sep 17 00:00:00 2001 From: senthil-k8s Date: Tue, 8 Aug 2023 21:06:28 +0530 Subject: [PATCH] feat(explore): implemented community feature --- src/components/ExploreCommunity/index.jsx | 33 ++++++++++++++++++++++- src/views/app/Explore/index.jsx | 2 ++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/src/components/ExploreCommunity/index.jsx b/src/components/ExploreCommunity/index.jsx index 385409e6..dcd89e93 100644 --- a/src/components/ExploreCommunity/index.jsx +++ b/src/components/ExploreCommunity/index.jsx @@ -1,7 +1,38 @@ import React from "react"; +import { explorecommunity, minus } from "../../assets"; const ExploreCommunity = () => { - return
index
; + return ( +
+
+

+ Community +

+
+
+
+ +
+
+
+ | +

Community

+ of Over 1000 people +
+
+

+ Join us and involve in a number of ongoing events,
and meetup. + Not only run by the core team,
but also run by the community + directly. +

+
+ +
+
+
+ ); }; export default ExploreCommunity; diff --git a/src/views/app/Explore/index.jsx b/src/views/app/Explore/index.jsx index 0cbddf92..6f5c3cd9 100644 --- a/src/views/app/Explore/index.jsx +++ b/src/views/app/Explore/index.jsx @@ -1,11 +1,13 @@ import React from "react"; import HomeLayout from "../../../layout/HomeLayout.jsx"; import Explore from "../../../pages/Explore/Explore.jsx"; +import ExploreCommunity from "../../../components/ExploreCommunity/index.jsx"; function ExplorePage() { return ( + ); }