import Layout from "../components/layout/Layout" import Link from "next/link" export default function Home() { return ( <>
{/* PAGE 404 ============================================= */}
{/* 404 PAGE TEXT */}
{/* Image */}
error-404-img
{/* Text */}

Page Not Found

Oops! The page you are looking for might have been moved, renamed or might never existed
{/* Button */} Back to home
{/* END 404 PAGE TEXT */}
{/* End row */}
{/* End container */}
{/* END PAGE 404 */} {/* DIVIDER LINE */}
) } export async function getStaticProps({ locale }) { const { getMessages } = await import('../utils/getMessages') return { props: { locale, messages: await getMessages(locale), } } }