"use client"; import { useTranslations, useLocale } from "next-intl"; import Header from "@/components/layout/Header"; import Footer from "@/components/layout/Footer"; import Link from "next/link"; import { Home, Search, Package } from "lucide-react"; export default function NotFoundPage() { const t = useTranslations("NotFound"); const locale = useLocale(); const basePath = `/${locale}`; return ( <> {/* 404 Code */} 404 {t("title")} {t("description")} {/* Quick Links */} {t("browseProducts")} {t("goHome")} {/* Search Suggestion */} {t("lookingFor")} {t("searchSuggestion")} > ); }
{t("description")}
{t("searchSuggestion")}