|
@@ -1,6 +1,6 @@
|
|
-import { AiFillApple } from 'react-icons/ai'
|
|
|
|
|
|
+import Image from 'next/image'
|
|
|
|
+import Link from 'next/link'
|
|
|
|
|
|
-import models from '../../models.json'
|
|
|
|
import Header from './header'
|
|
import Header from './header'
|
|
|
|
|
|
export default async function Home() {
|
|
export default async function Home() {
|
|
@@ -8,7 +8,7 @@ export default async function Home() {
|
|
<>
|
|
<>
|
|
<Header />
|
|
<Header />
|
|
<main className='flex min-h-screen max-w-6xl flex-col py-20 px-16 md:p-32 items-center mx-auto'>
|
|
<main className='flex min-h-screen max-w-6xl flex-col py-20 px-16 md:p-32 items-center mx-auto'>
|
|
- <img src='/ollama.png' className='w-16 h-auto' />
|
|
|
|
|
|
+ <Image src='/ollama.png' width={64} height={64} alt='ollamaIcon' />
|
|
<section className='my-12 text-center'>
|
|
<section className='my-12 text-center'>
|
|
<div className='flex flex-col space-y-2'>
|
|
<div className='flex flex-col space-y-2'>
|
|
<h2 className='md:max-w-[18rem] mx-auto my-2 text-3xl tracking-tight'>Portable large language models</h2>
|
|
<h2 className='md:max-w-[18rem] mx-auto my-2 text-3xl tracking-tight'>Portable large language models</h2>
|
|
@@ -17,9 +17,9 @@ export default async function Home() {
|
|
</h3>
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<div className='mx-auto flex flex-col space-y-4 mt-12'>
|
|
<div className='mx-auto flex flex-col space-y-4 mt-12'>
|
|
- <a href='/download' className='md:mx-10 lg:mx-14 bg-black text-white rounded-full px-4 py-2 focus:outline-none cursor-pointer'>
|
|
|
|
|
|
+ <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'>
|
|
Download
|
|
Download
|
|
- </a>
|
|
|
|
|
|
+ </Link>
|
|
<p className='text-neutral-500 text-sm '>
|
|
<p className='text-neutral-500 text-sm '>
|
|
Available for macOS with Apple Silicon <br />
|
|
Available for macOS with Apple Silicon <br />
|
|
Windows & Linux support coming soon.
|
|
Windows & Linux support coming soon.
|