Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -153,6 +153,7 @@ export default function LandingPage() {
|
||||
}
|
||||
]}
|
||||
ariaLabel="Pricing section"
|
||||
cardClassName="[&:nth-child(2)]:ring-2 [&:nth-child(2)]:ring-primary-cta [&:nth-child(2)]:shadow-lg [&:nth-child(2)]:shadow-primary-cta/20 [&:nth-child(2)]:scale-105"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -251,4 +252,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user