Files
ERitors-Scribe-Desktop/app/layout.tsx
natreex c9cf99e166 Update imports and Electron compatibility
- 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.
2025-11-16 11:55:52 -05:00

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>
);
}