= ({ summary, open = "false", children }) => {
+ const isOpened = open === "true";
+
+ return (
+ <>
+
+ {
+ isOpened
+ ?
+
+ {summary}
+
+ {children}
+
+ :
+
+ {summary}
+
+ {children}
+
+ }
+
+ >
+ );
+};
+
+export default Details;
diff --git a/src/join-comm.mdx b/src/join-comm.mdx
index bddbdd8..76528af 100644
--- a/src/join-comm.mdx
+++ b/src/join-comm.mdx
@@ -1,12 +1,11 @@
import URL from "@site/src/components/URL";
+import Details from "@site/src/components/Details";
We believe that everyone has something unique to offer, and we invite you to contribute to [Velaptor](https://github.com/KinsonDigital/Velaptor)
and the [KinsonDigital](https://github.com/KinsonDigital) organization.
-
-
-Interested?
-
+:::info Interested?
+
1. Contribute Your Skills: Whether you're a seasoned developer or just starting, your unique skills can truly make a difference. Your power to contribute is immense, and you can do so by:
- Picking up and submitting pull requests with code improvements, bug fixes, or new features.
@@ -22,4 +21,5 @@ Remember, every contribution, no matter how small, is valuable and appreciated.
not just helping us; you're helping the entire community by making game development better and more efficient.
Join us on this and be involved in making something amazing and unique together!
-
+
+:::