|
|
|
|
@@ -1,53 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "FrenchProof | Expert French Language Proofreading Services", description: "Professional French proofreading for businesses and individuals. Get flawless French content in 24 hours with expert review and advanced technology.", keywords: "French proofreading, language editing, document review, French translation, content quality", metadataBase: new URL("https://frenchproof.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://frenchproof.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "FrenchProof | Expert French Language Proofreading", description: "Professional French proofreading services combining AI technology with expert human review. Ensure your French content is perfect.", url: "https://frenchproof.com", siteName: "FrenchProof", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AROn4R1E9JJCpFJDxO1ohe352u/a-sophisticated-digital-proofreading-das-1772552141916-680fab5d.png", alt: "A sophisticated digital proofreading dashboard interface with French language text samples displayed"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "FrenchProof | Expert French Proofreading", description: "Professional French language proofreading with 24-hour turnaround. Start your free trial today.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AROn4R1E9JJCpFJDxO1ohe352u/a-sophisticated-digital-proofreading-das-1772552141916-680fab5d.png"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "FrenchProof | Premium French Language Proofreading Services", description: "Professional French proofreading services for businesses and individuals. Expert review, fast turnaround, and secure document handling."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|