|
|
|
|
@@ -1,59 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Archivo } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const archivo = Archivo({
|
|
|
|
|
variable: "--font-archivo",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Fiscopti - Simulateur Fiscal Intelligent RGPD",
|
|
|
|
|
description: "Optimisez votre fiscalité avec Fiscopti: moteur fiscal déterministe, IA silencieuse, transparent et conforme RGPD pour les contribuables français.",
|
|
|
|
|
keywords: "simulateur fiscal, optimisation fiscale, France, RGPD, calcul d'impôts, AI, recommandations fiscales",
|
|
|
|
|
metadataBase: new URL("https://fiscopti.fr"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://fiscopti.fr",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Fiscopti - Optimisation Fiscale Intelligente",
|
|
|
|
|
description: "Plateforme de simulation fiscale nouvelle génération pour contribuables français. Moteur fiscal déterministe et IA silencieuse, conforme RGPD.",
|
|
|
|
|
url: "https://fiscopti.fr",
|
|
|
|
|
siteName: "Fiscopti",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/women-hands-holding-tablet-clipboard_23-2148352819.jpg",
|
|
|
|
|
alt: "Tableau de bord Fiscopti",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Fiscopti - Simulateur Fiscal Intelligent",
|
|
|
|
|
description: "Optimisez votre situation fiscale avec notre engine fiscal déterministe et IA silencieuse.",
|
|
|
|
|
images: ["http://img.b2bpic.net/free-photo/women-hands-holding-tablet-clipboard_23-2148352819.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Fiscopti - Optimisation Fiscale Intelligente", description: "Simulateur fiscal de nouvelle génération pour les contribuables français. Recommandations fiables, transparentes et conformes RGPD."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body className={`${archivo.variable} antialiased`}>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|