infoalloggi-monorepo/apps/infoalloggi/src/pages/annuncio-non-trovato.tsx
Marco Pedone a87b9f57a7 feat: implement Result type for handling success and error states in API responses
feat: create AnnuncioNotFound page to handle missing announcements gracefully
feat: refactor Annuncio component to use structured AnnuncioData and improve SEO metadata handling
refactor: remove unused getAnnuncioMetaByCod function and streamline getAnnuncioData logic
2026-03-19 10:20:41 +01:00

4 lines
147 B
TypeScript

import FailedAnnuncioLoading from "~/components/failed-loading";
export default function AnnuncioNotFound() {
return <FailedAnnuncioLoading />;
}