2023-07-19 10:19:24 -04:00
|
|
|
import Image from 'next/image'
|
|
|
|
import Link from 'next/link'
|
2023-07-07 16:07:10 -04:00
|
|
|
|
2023-07-18 15:56:43 -04:00
|
|
|
import Header from './header'
|
2023-07-02 19:52:40 -04:00
|
|
|
|
|
|
|
export default async function Home() {
|
|
|
|
return (
|
2023-07-18 15:56:43 -04:00
|
|
|
<>
|
|
|
|
<Header />
|
2023-07-18 16:17:42 -04:00
|
|
|
<main className='flex min-h-screen max-w-6xl flex-col py-20 px-16 md:p-32 items-center mx-auto'>
|
2023-07-19 10:19:24 -04:00
|
|
|
<Image src='/ollama.png' width={64} height={64} alt='ollamaIcon' />
|
2023-07-18 15:56:43 -04:00
|
|
|
<section className='my-12 text-center'>
|
|
|
|
<div className='flex flex-col space-y-2'>
|
2023-07-21 09:57:57 -07:00
|
|
|
<h2 className='md:max-w-md mx-auto my-2 text-3xl tracking-tight'>
|
|
|
|
Get up and running with large language models, locally.
|
|
|
|
</h2>
|
2023-07-18 16:17:42 -04:00
|
|
|
<h3 className='md:max-w-xs mx-auto text-base text-neutral-500'>
|
2023-07-21 09:57:57 -07:00
|
|
|
Run Llama 2 and other models on macOS. Customize and create your own.
|
2023-07-18 15:56:43 -04:00
|
|
|
</h3>
|
2023-07-02 19:52:40 -04:00
|
|
|
</div>
|
2023-07-21 09:57:57 -07:00
|
|
|
<div className='mx-auto max-w-xs flex flex-col space-y-4 mt-12'>
|
|
|
|
<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'
|
|
|
|
>
|
2023-07-18 15:56:43 -04:00
|
|
|
Download
|
2023-07-19 10:19:24 -04:00
|
|
|
</Link>
|
2023-07-18 16:17:42 -04:00
|
|
|
<p className='text-neutral-500 text-sm '>
|
2023-07-21 09:57:57 -07:00
|
|
|
Available for macOS with Apple Silicon <br />
|
|
|
|
Windows & Linux support coming soon.
|
2023-07-18 15:56:43 -04:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</>
|
2023-07-02 19:52:40 -04:00
|
|
|
)
|
|
|
|
}
|