mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 07:54:25 +08:00
14 lines
264 B
Plaintext
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
|