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;