Update src/app/layout.tsx

This commit is contained in:
2026-03-07 07:18:47 +00:00
parent f41b4a0940
commit 59ea8ef448

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "R-CV | AI-Powered CV Evaluation Automation", description: "Yapay zeka destekli CV değerlendirme otomasyonu. Gmail'den Telegram'a hızlı analiz. Zoom entegrasyonu ile toplantı planlaması. İK süreçlerini 16 saat/ay tasarruf edin.", keywords: "CV evaluation, AI recruitment, HR automation, hiring automation, Turkish SaaS", metadataBase: new URL("https://r-cv.io"),
alternates: {
canonical: "https://r-cv.io"},
openGraph: {
title: "R-CV | Yapay Zeka Destekli İşe Alım Otomasyonu", description: "Her CV 10 saniyede değerlendirilir. Gmail + Telegram + Zoom + Google Calendar entegrasyonu.", url: "https://r-cv.io", siteName: "R-CV", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Abgj4DNKmpQ1lWpFi5l49yGnfw/sleek-mobile-phone-mockup-showing-whatsa-1772867317417-091a74c0.png", alt: "R-CV Dashboard"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "R-CV | Yapay Zeka Destekli İşe Alım Otomasyonu", description: "CV değerlendirmesini yapay zekaya bırak. Telegram'a özet, Zoom'da toplantı, otomatik kararlar.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Abgj4DNKmpQ1lWpFi5l49yGnfw/sleek-mobile-phone-mockup-showing-whatsa-1772867317417-091a74c0.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "R-CV - Yapay Zeka Destekli İşe Alım Otomasyonu", description: "Gmail'e düşen her CV otomatik değerlendirilir. Telegram'a özet gelir. Tek mesajla Zoom toplantısı kurulur."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="tr">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}