import { useTranslations } from "next-intl"; import DownloadCard from "./card"; export function Guides() { const t = useTranslations(); const guides = [ { fileUrl: "/varnix.pdf", fileName: t("about.notePPPage.varnix"), fileType: "PDF", fileSize: "368.51 KB", }, { fileUrl: "/ppFlanes.pdf", fileName: t("about.notePPPage.ppFlanes"), fileType: "PDF", fileSize: "368.51 KB", }, { fileUrl: "/ppFiting.pdf", fileName: t("about.notePPPage.ppFiting"), fileType: "PDF", fileSize: "368.51 KB", }, ]; return (