Add components for Act management and integrate Electron setup

This commit is contained in:
natreex
2025-11-16 11:00:04 -05:00
parent e192b6dcc2
commit 8167948881
97 changed files with 25378 additions and 3 deletions

26
app/layout.tsx Normal file
View File

@@ -0,0 +1,26 @@
import type {Metadata} from "next";
import "./globals.css";
import {ReactNode} from "react";
export const metadata: Metadata = {
title: "ERitors Scribe",
description: "Les meilleurs livres sont ceux qui ont le meilleur plan.",
icons: {
icon: "/eritors-favicon-white.png"
}
};
export default function RootLayout(
{
children,
}: Readonly<{
children: ReactNode;
}>) {
return (
<html lang="fr">
<body>
{children}
</body>
</html>
);
}