import { Button } from "@app/components/ui/button"; import { Card, CardContent, CardFooter, CardHeader, CardTitle, } from "@app/components/ui/card"; import Link from "next/link"; import { getTranslations } from "next-intl/server"; export default async function ResourceNotFound() { const t = await getTranslations(); return ( {t('resourceNotFound')} {t('resourceNotFoundDescription')}
); }