diff --git a/components/layout/site-footer.tsx b/components/layout/site-footer.tsx index 453f266..4207dda 100644 --- a/components/layout/site-footer.tsx +++ b/components/layout/site-footer.tsx @@ -1,44 +1,44 @@ -import Link from "next/link"; -import { useLocale, useTranslations } from "next-intl"; +"use client"; + +import { motion } from "framer-motion"; +import { Heart } from "lucide-react"; +import { useTranslations } from "next-intl"; import { Container } from "@/components/layout/container"; -import { AppLocale, getLocalizedPath } from "@/lib/locale"; - -const navItems = [ - { key: "home", path: "" }, - { key: "portfolio", path: "/portfolio" }, - { key: "about", path: "/about" }, - { key: "contact", path: "/contact" }, -]; +import { AppCard } from "@/components/ui/app-card"; +import { AppLocale } from "@/lib/locale"; type SiteFooterProps = { defaultLocale: AppLocale; }; export function SiteFooter({ defaultLocale }: SiteFooterProps) { - const locale = useLocale(); - const tNav = useTranslations("navigation"); + void defaultLocale; const tFooter = useTranslations("footer"); return ( -