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 ( + ); }