import { textCorrection } from "@/_assets/decorations"; import { Home24Regular } from "@fluentui/react-icons"; import { Metadata } from "next"; import { unstable_noStore } from "next/cache"; import Image from "next/image"; import React from "react"; import { notFoundImage } from "./_assets/illustrations"; import Button from "./_components/Button"; import { canonicalName, getTitle } from "./_data/metadata"; import cls from "./not-found.module.scss"; export async function generateMetadata(): Promise { unstable_noStore(); return { title: getTitle("Page not found", canonicalName.hostname), robots: "noindex" }; } // [SPECIAL] const NotFoundPage: React.FC = () => (

404...

{

...fox not found

{
); export default NotFoundPage;