From 79923451d08e45d0f9ab2acca76d3f5bd8238d58 Mon Sep 17 00:00:00 2001 From: amithkoujalgi Date: Sat, 19 Apr 2025 23:24:44 +0530 Subject: [PATCH] Updated docs --- .../Ollama4jUIImageCarousel/index.js | 40 ++++++++++++------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/docs/src/components/Ollama4jUIImageCarousel/index.js b/docs/src/components/Ollama4jUIImageCarousel/index.js index d3baef6..fb7ebe9 100644 --- a/docs/src/components/Ollama4jUIImageCarousel/index.js +++ b/docs/src/components/Ollama4jUIImageCarousel/index.js @@ -22,21 +22,33 @@ const images = [ ]; class Ollama4jUIImageCarousel extends React.Component { - render() { - return ( -
-
-

Explore the stuff we have built with Ollama4j

-

- - Ollama4j UI - Desktop UI built in Java with Swing - -

+ renderItem = (item) => { + return ( +
+
- -
- ); + ); + }; + + render() { + return ( +
+
+

Explore the stuff we have built with Ollama4j

+

+ + Ollama4j UI - Desktop UI built in Java with Swing + +

+
+ +
+ ); } } -export default Ollama4jUIImageCarousel; \ No newline at end of file +export default Ollama4jUIImageCarousel;