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
4 lines
147 B
TypeScript
4 lines
147 B
TypeScript
import FailedAnnuncioLoading from "~/components/failed-loading";
|
|
export default function AnnuncioNotFound() {
|
|
return <FailedAnnuncioLoading />;
|
|
}
|