import React from "react"; import Dropdown from "@site/src/components/Elements/dropdown"; import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; import useBaseUrl from "@docusaurus/useBaseUrl"; import Layout from "@theme/Layout"; import AnnoncementBanner from "@site/src/components/Announcement"; import { CloudArrowUpIcon, CursorArrowRaysIcon, ShieldCheckIcon, CpuChipIcon, ClipboardDocumentIcon, CubeTransparentIcon, ComputerDesktopIcon, FolderPlusIcon, } from "@heroicons/react/24/outline"; import ThemedImage from "@theme/ThemedImage"; const features = [ { name: "Personal AI that runs on your computer", desc: "Jan runs directly on your local machine, offering privacy, convenience and customizability.", icon: ComputerDesktopIcon, }, { name: "Private and offline, your data never leaves your machine", desc: "Your conversations and data are with an AI that runs on your computer, where only you have access.", icon: ShieldCheckIcon, }, { name: "No subscription fees, the AI runs on your computer", desc: "Say goodbye to monthly subscriptions or usage-based APIs. Jan runs 100% free on your own hardware.", icon: CubeTransparentIcon, }, { name: "Extendable via App and Plugin framework", desc: "Jan has a versatile app and plugin framework, allowing you to customize it to your needs.", icon: FolderPlusIcon, }, ]; export default function Home() { const { siteConfig } = useDocusaurusContext(); return ( <>

Personal AI

Run   Large Language Models
privately  on your  personal computer

{/*
*/}

AI that you control

Jan runs Large Language Models locally on Windows, Mac and Linux. Available on Desktop and Cloud-Native.

{features.map((feat, i) => { return (
); })}
); }