Reverted all changes back to version cad0921161
This commit is contained in:
@@ -1,14 +1,10 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { Github, Twitter } from "lucide-react";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { changelogData } from "@/lib/changelog-data";
|
||||
import { LanguageSwitcher } from "./language-switcher";
|
||||
import { useTranslation } from "@/context/i18n-context";
|
||||
|
||||
export function Footer() {
|
||||
const { t } = useTranslation();
|
||||
const latestVersion = changelogData[0]?.version;
|
||||
|
||||
return (
|
||||
@@ -33,8 +29,8 @@ export function Footer() {
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-4 text-sm text-muted-foreground">
|
||||
<Link href="/imprint" className="hover:text-primary transition-colors">{t('footer.imprint')}</Link>
|
||||
<Link href="/privacy" className="hover:text-primary transition-colors">{t('footer.privacy')}</Link>
|
||||
<Link href="/imprint" className="hover:text-primary transition-colors">Imprint</Link>
|
||||
<Link href="/privacy" className="hover:text-primary transition-colors">Privacy</Link>
|
||||
{latestVersion && (
|
||||
<Link
|
||||
href="/changelog"
|
||||
|
||||
Reference in New Issue
Block a user