Files
Spanglish/frontend/src/app/not-found.tsx
T

26 lines
676 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Metadata } from 'next';
import Header from '@/components/layout/Header';
import Footer from '@/components/layout/Footer';
import { NotFoundMessage } from '@/components/NotFoundMessage';
export const metadata: Metadata = {
title: 'Page Not Found Spanglish',
description: 'The page you are looking for could not be found.',
robots: {
index: false,
follow: true,
},
};
export default function NotFound() {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-1 flex items-center justify-center bg-secondary-gray">
<NotFoundMessage />
</main>
<Footer />
</div>
);
}