4 Commits

Author SHA1 Message Date
5746445e17 Merge version_2 into main
Merge version_2 into main
2026-03-03 17:44:26 +00:00
b1a8b5a5df Update src/app/page.tsx 2026-03-03 17:44:20 +00:00
ed65242b55 Update src/app/layout.tsx 2026-03-03 17:44:18 +00:00
e4c7d20f49 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:54:33 +00:00
2 changed files with 10 additions and 43 deletions

View File

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

View File

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