diff --git a/site/docs/components/landing/Tweets.tsx b/site/docs/components/landing/Tweets.tsx
new file mode 100644
index 0000000000..fb66269fdf
--- /dev/null
+++ b/site/docs/components/landing/Tweets.tsx
@@ -0,0 +1,109 @@
+import { useEffect, useState } from 'react';
+
+const Tweets = () => {
+ const [scriptLoaded, setScriptLoaded] = useState(false);
+
+ useEffect(() => {
+ const script = document.createElement('script');
+ script.src = 'https://platform.twitter.com/widgets.js';
+ script.async = true;
+
+ // Set script onload to true when it's loaded
+ script.onload = () => {
+ setScriptLoaded(true);
+ };
+
+ // Set script onerror to handle failure to load
+ script.onerror = () => {
+ setScriptLoaded(false);
+ };
+
+ document.body.appendChild(script);
+
+ // Cleanup the script when the component unmounts
+ return () => {
+ document.body.removeChild(script);
+ };
+ }, []);
+
+ if (!scriptLoaded) {
+ // If the script isn't loaded yet, return null.
+ return null;
+ }
+
+ return (
+
+ 🟣 Excited to announce that Basenames are now integrated into the
+ Fit Club app!
+ The{' '}
+
+ @OnchainKit
+ {' '}
+ makes me happy as a developer and excited to write some code
+ again.
+
+ Swap is now live on our website! Feels good to be based, thanks
+ guys 💙{' '}
+ pic.twitter.com/vunDYrnT2j
+
+ Builders ship faster with OnchainKit
+
+
+
+
+
+ Thanks to{' '}
+
+ @OnchainKit
+ {' '}
+ for making it smooth and easy! 💜
+
+
+ More updates on the way, stay fit. 🏋️♀️🏋️♂️{' '}
+ pic.twitter.com/5BlIm5kSx3
+
+
+
+
+
--- 🟣 Excited to announce that Basenames are now integrated into the Fit Club app!
- — Fit Club (@fitclubonbase) August 23, 2024 -
- Thanks to @OnchainKit for making it smooth and easy! 💜
- More updates on the way, stay fit. 🏋️♀️🏋️♂️ pic.twitter.com/5BlIm5kSx3 -
-The @OnchainKit makes me happy as a developer and exiting to write some code again.
— GoodDev (@YourGoodDev) September 26, 2024
-Swap is now live on our website! Feels good to be based, thanks guys 💙 pic.twitter.com/vunDYrnT2j
— KEYCAT (@KeyboardCatBase) September 24, 2024