"use client"; import { Changelog } from "@/components/changelog"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { ArrowLeft } from "lucide-react"; import { useTranslation } from "@/context/i18n-context"; export default function ChangelogPage() { const { t } = useTranslation(); return (
); }