Files
website/apps/website/app/not-found.tsx
Mauricio Siu 0b52b9b1af docs: refactor code for consistency and readability
- Standardized import statements across various components to use double quotes for consistency.
- Updated component files to ensure proper formatting and adherence to coding standards.
- Enhanced overall code readability by aligning code structure and improving comment clarity.
- Made minor adjustments to ensure all components follow the same coding conventions, improving maintainability.
2025-12-07 18:13:12 -06:00

14 lines
190 B
TypeScript

"use client";
import NextError from "next/error";
export default function NotFound() {
return (
<html lang="en">
<body>
<NextError statusCode={404} />
</body>
</html>
);
}