import { Accordion, ActionIcon, Center, Drawer, type DrawerProps, FocusTrap, Group, HoverCard, Stack, } from "@mantine/core"; import { IconBrandGithub } from "@tabler/icons-react"; import prettyMilliseconds from "pretty-ms"; import { Suspense, lazy } from "react"; import { repository } from "../../../../../package.json"; import { addLogEntry } from "../../../../modules/logEntries"; import { getSemanticVersion } from "../../../../modules/stringFormatters"; const AISettingsForm = lazy(() => import("./AISettingsForm")); const ActionsForm = lazy(() => import("./ActionsForm")); const InterfaceSettingsForm = lazy(() => import("./InterfaceSettingsForm")); export default function MenuDrawer(drawerProps: DrawerProps) { const repoName = repository.url.split("/").pop(); return ( addLogEntry("User clicked the GitHub link")} >
{repoName}
{repoName}
{`v${getSemanticVersion(VITE_BUILD_DATE_TIME)}+${VITE_COMMIT_SHORT_HASH}`}
Released{" "} {prettyMilliseconds( new Date().getTime() - new Date(VITE_BUILD_DATE_TIME).getTime(), { compact: true, verbose: true, }, )}{" "} ago
} > AI Settings Interface Settings Actions
); }