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.
This commit is contained in:
natreex
2025-11-16 11:55:52 -05:00
parent 8167948881
commit c9cf99e166
72 changed files with 237 additions and 127 deletions

View File

@@ -1,15 +1,6 @@
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,
@@ -18,6 +9,11 @@ export default function RootLayout(
}>) {
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>