Update releases widget
diff --git a/static/js/RecentReleasesWidget.js b/static/js/RecentReleasesWidget.js
index e8f9ad90..023fd33 100644
--- a/static/js/RecentReleasesWidget.js
+++ b/static/js/RecentReleasesWidget.js
@@ -31,7 +31,7 @@
 }
 
 export  function RecentReleasesContainer({ jsonData }) {
-  const firstThree = jsonData.slice(0,5);
+  const firstThree = jsonData.slice(0,3);
   return (
     <div>
       {firstThree.map((data) => (
diff --git a/static/js/version.js b/static/js/version.js
index 9b8cae1..6b1cbea 100644
--- a/static/js/version.js
+++ b/static/js/version.js
@@ -24,22 +24,20 @@
  * limitations under the License.
  */
 
- 
 
 const Releases = [
   {
+    version: "28.0.0",
+    date: "Nov 6 2023",
+  },
+  {
     version: "27.0.0",
     date: "Aug 10 2023",
   },
   {
     version: "26.0.0",
     date: "May 23 2023",
-  },
-  {
-    version: "25.0.2",
-    date: "Jan 4 2023",
   }
+]
 
-  ]
-
-  module.exports.Releases = Releases;
\ No newline at end of file
+module.exports.Releases = Releases;
\ No newline at end of file