page.tsx 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. import Image from 'next/image'
  2. import Link from 'next/link'
  3. import Header from './header'
  4. export default async function Home() {
  5. return (
  6. <>
  7. <Header />
  8. <main className='flex min-h-screen max-w-6xl flex-col py-20 px-16 md:p-32 items-center mx-auto'>
  9. <Image src='/ollama.png' width={64} height={64} alt='ollamaIcon' />
  10. <section className='my-12 text-center'>
  11. <div className='flex flex-col space-y-2'>
  12. <h2 className='md:max-w-[18rem] mx-auto my-2 text-3xl tracking-tight'>Portable large language models</h2>
  13. <h3 className='md:max-w-xs mx-auto text-base text-neutral-500'>
  14. Bundle a model’s weights, configuration, prompts, data and more into self-contained packages that run anywhere.
  15. </h3>
  16. </div>
  17. <div className='mx-auto flex flex-col space-y-4 mt-12'>
  18. <Link href='/download' className='md:mx-10 lg:mx-14 bg-black text-white rounded-full px-4 py-2 focus:outline-none cursor-pointer'>
  19. Download
  20. </Link>
  21. <p className='text-neutral-500 text-sm '>
  22. Available for macOS with Apple Silicon <br />
  23. Windows & Linux support coming soon.
  24. </p>
  25. </div>
  26. </section>
  27. </main>
  28. </>
  29. )
  30. }