- Removed unnecessary React imports. - Adjusted package.json scripts for Electron integration. - Updated components to replace Next.js-specific imports with Electron-compatible alternatives. - Minor tsconfig.json changes for better compatibility.
23 lines
530 B
TypeScript
23 lines
530 B
TypeScript
import "./globals.css";
|
|
import {ReactNode} from "react";
|
|
|
|
export default function RootLayout(
|
|
{
|
|
children,
|
|
}: Readonly<{
|
|
children: ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="fr">
|
|
<head>
|
|
<title>ERitors Scribe</title>
|
|
<meta name="description" content="Les meilleurs livres sont ceux qui ont le meilleur plan." />
|
|
<link rel="icon" href="/eritors-favicon-white.png" />
|
|
</head>
|
|
<body>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|