jan/docs/src/pages/index.mdx
Faisal Amir 53f2943b2c
fix: typo meta description (#4507)
* fix: typo meta description

* chore: fix meta desc
2025-01-22 21:39:55 +07:00

42 lines
1.2 KiB
Plaintext

---
title: "Jan: Open source ChatGPT-alternative that runs 100% offline"
description: "Chat with AI without privacy concerns. Jan is an open-source alternative to ChatGPT, running AI models locally on your device."
keywords:
[
Jan,
Customizable Intelligence, LLM,
local AI,
privacy focus,
free and open source,
private and offline,
conversational AI,
no-subscription fee,
large language models,
architecture,
]
---
import Home from "@/components/Home"
export const getStaticProps = async() => {
const resReleaseLatest = await fetch('https://api.github.com/repos/janhq/jan/releases/latest')
const resRelease = await fetch('https://api.github.com/repos/janhq/jan/releases?per_page=500')
const resRepo = await fetch('https://api.github.com/repos/janhq/jan')
const repo = await resRepo.json()
const latestRelease = await resReleaseLatest.json()
const release = await resRelease.json()
return {
props: {
ssg: {
stars: repo.stargazers_count || 2000,
lastRelease: latestRelease,
release: release,
lastVersion: latestRelease.tag_name || 'v.0.0.1'
},
},
}
}
<Home />