Enhance 404 handling in webpack configuration with async middleware for prerendering. Updated NotFound404 page to improve user experience with localized messaging and responsive image styling. Added taxonomy ID mappings in feeds.cjs for better compliance and clarity in product categorization.

This commit is contained in:
seb
2025-07-07 02:12:19 +02:00
parent 8698816875
commit 9e14827c91
5 changed files with 386 additions and 108 deletions

View File

@@ -16,19 +16,20 @@ const NotFound404 = () => {
src="/assets/images/404.png"
alt="404 - Page Not Found"
style={{
width: '300px',
height: '300px',
maxWidth: '100%',
height: 'auto',
maxHeight: '300px',
display: 'block',
}}
/>
</Box>
<Typography variant="body1" paragraph align="center">
This page is no longer available.
Diese Seite scheint es nicht mehr zu geben.
</Typography>
</>
);
return <LegalPage title="Page Not Found" content={content} />;
return <LegalPage content={content} />;
};
export default NotFound404;