websync / pages /404.tsx
Shivam
Initial commit: Web-SyncPlay moved into Streamer
d092f57
import Layout from "../components/Layout"
export default function Error404() {
return (
<Layout
meta={{
title: "Not Found",
description: "The requested site could not be found ...",
}}
error={404}
>
There is nothing to be found here :/
</Layout>
)
}