From 59ea8ef448e8787de15fec41ef3f7a24e9c34ed9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:18:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8f531f2..ba7f42a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}