From cf17ea478a03637ffce8f3d26f1619b1731639c4 Mon Sep 17 00:00:00 2001 From: senthil-k8s Date: Sun, 6 Aug 2023 18:29:47 +0530 Subject: [PATCH] feat(community): designed community news cards --- src/components/CommunityNews/index.jsx | 115 ++++++++++++++++++++++- src/views/app/CommunityLanding/index.jsx | 2 + 2 files changed, 116 insertions(+), 1 deletion(-) diff --git a/src/components/CommunityNews/index.jsx b/src/components/CommunityNews/index.jsx index d02bff2..1da6763 100644 --- a/src/components/CommunityNews/index.jsx +++ b/src/components/CommunityNews/index.jsx @@ -1,7 +1,120 @@ import React from "react"; +import { anime1, anime2, anime3, news1, news2, news3 } from "../../assets"; const CommmunityNews = () => { - return
index
; + return ( +
+
+
+ | +

Latest

+ News +
+
+

+ The Following are our most frequented and
+ updated communication channels.
+ You name it, we've got it. +

+
+ +
+
+
+
+ +

+ Progress +

+

+ Fashion Froze 3D: Unveiling the Future of Fashion and Community + Engagement +

+
+
+ +

Martin

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

May 30, 2023.

+
+
+
+
+ +

+ Ambassador +

+

+ Fashion Froze Ambassador Program: Shaping the Future of Style Together +

+
+
+ +

Henry

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

July 02, 2023.

+
+
+
+
+ +

+ Branding +

+

+ Building a Memorable Brand: Approach to Lasting Impressions +

+
+
+ +

Rosy

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

Aug 01, 2023.

+
+
+
+
+
+
+ ); }; export default CommmunityNews; diff --git a/src/views/app/CommunityLanding/index.jsx b/src/views/app/CommunityLanding/index.jsx index ec07df9..066cad7 100644 --- a/src/views/app/CommunityLanding/index.jsx +++ b/src/views/app/CommunityLanding/index.jsx @@ -2,12 +2,14 @@ import React from "react"; 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"; function Guide() { return ( + ); }