Files
trustlab/src/app/(full-width-pages)/(error-pages)/error-404/page.tsx
2025-12-30 12:14:45 +07:00

12 lines
279 B
TypeScript

import { Metadata } from "next";
import Error404Client from "./Error404Client";
export const metadata: Metadata = {
title: "Page Not Found",
description: "The page you are looking for does not exist.",
};
export default function Error404() {
return <Error404Client />;
}