Added link installation and changelog

This commit is contained in:
Faisal Amir 2024-03-18 10:52:38 +07:00
parent 7d3bf0111b
commit bb4f597c0f
2 changed files with 18 additions and 1 deletions

View File

@ -119,7 +119,7 @@ export default function DownloadApp() {
<a <a
href={system.href || ''} href={system.href || ''}
className={twMerge( className={twMerge(
'btn-shadow inline-flex text-lg my-2 font-semibold cursor-pointer justify-center items-center space-x-2] text-blue-500 hover:text-blue-500 gap-2', 'inline-flex text-lg my-2 font-semibold cursor-pointer justify-center items-center space-x-2] text-blue-500 hover:text-blue-500 gap-2',
system.comingSoon && 'pointer-events-none' system.comingSoon && 'pointer-events-none'
)} )}
> >

View File

@ -36,6 +36,23 @@ export default function Download() {
}} }}
/> />
</div> </div>
<div className="mb-14">
<a
href="https://jan.ai/guides/install/"
target="_blank"
className="text-blue-500 hover:text-blue-500 pr-4 border-r border-black/40 dark:border-white/40 mr-4 inline-block"
>
Installation Guide
</a>
<a
href="https://jan.ai/changelog/"
target="_blank"
className="text-blue-500 hover:text-blue-500"
>
Changelog
</a>
</div>
<DownloadApp /> <DownloadApp />
</div> </div>
</main> </main>