From 0e04407ae032c6e054b4e14ddbaac7bea5413025 Mon Sep 17 00:00:00 2001 From: "NABADEEP KR. DAS" Date: Wed, 16 Oct 2024 19:42:11 +0530 Subject: [PATCH] Update community.tsx Padding adjustments: Added padding to the section for better spacing on smaller screens. Title: Changed the title to "Join Our Community" for a warmer, more welcoming message. Subtitle: Increased the text size for a more prominent and balanced appearance. Grid layout: Improved the responsiveness and added spacing between grid items. Gaps and spacing: Adjusted gaps for better spacing between sections and elements. Alignment: Kept everything centered for a clean, cohesive look. --- apps/docs/components/marketing/community.tsx | 63 +++++++++++--------- 1 file changed, 36 insertions(+), 27 deletions(-) diff --git a/apps/docs/components/marketing/community.tsx b/apps/docs/components/marketing/community.tsx index 562c33eb07..fa41a1f865 100644 --- a/apps/docs/components/marketing/community.tsx +++ b/apps/docs/components/marketing/community.tsx @@ -1,36 +1,45 @@ -import {Spacer} from "@nextui-org/react"; - -import {sectionWrapper, titleWrapper, title, subtitle} from "../primitives"; - -import {FeaturesGrid} from "@/components/marketing/features-grid"; -import {communityAccounts} from "@/libs/constants"; +import { Spacer } from "@nextui-org/react"; +import { sectionWrapper, titleWrapper, title, subtitle } from "../primitives"; +import { FeaturesGrid } from "@/components/marketing/features-grid"; +import { communityAccounts } from "@/libs/constants"; export const Community = () => { return ( -
-
-
-
-
-

Community

   -
+
+
+ {/* Title Section */} +
+
+

Join Our Community

-

- Get involved in our community. Everyone is welcome! -

- -
+ + {/* Subtitle Section */} +

+ Get involved in our community. Everyone is welcome! +

+ + {/* Features Section */} + +
); }; +