import { Button } from "../ui/button"; import { Calendar, Star, TerminalIcon } from "lucide-react"; import { Dialog, DialogContent, DialogHeader, DialogTitle } from "../ui/dialog"; import { useState } from "react"; import { Changelog, version } from "@/version"; import events from "@/lib/commandEvent"; import { ScrollArea } from "../ui/scroll-area"; 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
); }