Initial commit

This commit is contained in:
2026-04-12 16:53:58 -04:00
parent 48c2356383
commit fe84ec6a43
17 changed files with 628 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
export const metadata = {
title: "",
description: "",
};
export default function layout({ children }) {
return children;
}
+7
View File
@@ -0,0 +1,7 @@
export default function NotFound() {
return (
<div>
<h1>404</h1>
</div>
);
}
+12
View File
@@ -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

+19
View File
@@ -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>
);
}