Files
supabase/apps/docs/pages/404.mdx
2022-12-08 12:34:59 -03:30

14 lines
264 B
Plaintext

import Layout from '~/layouts/DefaultGuideLayout'
export const meta = {
id: '404',
title: '404 not found',
description: '404 not found',
}
404 not found
export const Page = ({ children }) => <Layout meta={meta} children={children} />
export default Page