forked from Mirror/ollama4j
		
	Updated docs
This commit is contained in:
		
							
								
								
									
										62
									
								
								docs/src/components/HomepageFeatures/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								docs/src/components/HomepageFeatures/index.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,62 @@
 | 
			
		||||
import clsx from 'clsx';
 | 
			
		||||
import Heading from '@theme/Heading';
 | 
			
		||||
import styles from './styles.module.css';
 | 
			
		||||
 | 
			
		||||
const FeatureList = [
 | 
			
		||||
  {
 | 
			
		||||
    title: 'Easy LLM Integration',
 | 
			
		||||
    Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
 | 
			
		||||
    description: (
 | 
			
		||||
      <>
 | 
			
		||||
        Easy integration with Ollama, enabling the execution of large language models locally.
 | 
			
		||||
 | 
			
		||||
      </>
 | 
			
		||||
    ),
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    title: 'Developer-Friendly',
 | 
			
		||||
    Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
 | 
			
		||||
    description: (
 | 
			
		||||
      <>
 | 
			
		||||
        Clean and simple <code>APIs</code>, focused on seamless interaction with Ollama.
 | 
			
		||||
      </>
 | 
			
		||||
    ),
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    title: 'Powered by Java',
 | 
			
		||||
    Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
 | 
			
		||||
    description: (
 | 
			
		||||
      <>
 | 
			
		||||
        Empowers Java developers to harness the full capabilities of Ollama.
 | 
			
		||||
      </>
 | 
			
		||||
    ),
 | 
			
		||||
  },
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
function Feature({Svg, title, description}) {
 | 
			
		||||
  return (
 | 
			
		||||
    <div className={clsx('col col--4')}>
 | 
			
		||||
      <div className="text--center">
 | 
			
		||||
        <Svg className={styles.featureSvg} role="img" />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div className="text--center padding-horiz--md">
 | 
			
		||||
        <Heading as="h3">{title}</Heading>
 | 
			
		||||
        <p>{description}</p>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default function HomepageFeatures() {
 | 
			
		||||
  return (
 | 
			
		||||
    <section className={styles.features}>
 | 
			
		||||
      <div className="container">
 | 
			
		||||
        <div className="row">
 | 
			
		||||
          {FeatureList.map((props, idx) => (
 | 
			
		||||
            <Feature key={idx} {...props} />
 | 
			
		||||
          ))}
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </section>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								docs/src/components/HomepageFeatures/styles.module.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								docs/src/components/HomepageFeatures/styles.module.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
.features {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  padding: 2rem 0;
 | 
			
		||||
  width: 100%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.featureSvg {
 | 
			
		||||
  height: 200px;
 | 
			
		||||
  width: 200px;
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user