import Link from "next/link"; import { Button } from "../ui/button"; import { Activity, Calendar, Star, TerminalIcon } from "lucide-react"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "../ui/dialog"; import { useState } from "react"; import { Changelog, version } from "@/version"; import events from "@/lib/commandEvent" export default function InfoPopover() { const [changeLog, setChangelog] = useState(false); return (
The future of Minehut lists Use filters, intuitive keyboard shortcuts and other features for completely free, and *open-source.
Currently on version{" "} {version}.
{" "} * Licensed under the MIT License

Changelog
); }