Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export const metadata = {
|
||||
title: "",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export default function layout({ children }) {
|
||||
return children;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
export default function NotFound() {
|
||||
return (
|
||||
<div>
|
||||
<h1>404</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
export const metadata = {
|
||||
title: "",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Hello World</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.6 KiB |
@@ -0,0 +1,19 @@
|
||||
import "@styles/globals.css";
|
||||
import { ZenProvider } from '@zen/core/provider';
|
||||
|
||||
export const metadata = {
|
||||
title: "",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
return (
|
||||
<html lang="fr">
|
||||
<body>
|
||||
<ZenProvider>
|
||||
{children}
|
||||
</ZenProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user