diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 70a2fa3..f6c6254 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "TrendVerse - Dünyanın En Viral Ürünlerini Keşfet", - description: "Sosyal medyada viral olan trend ürünleri keşfet. TikTok, Instagram, YouTube trendlerine göre güncellenen ürün keşif platformu. Affiliate ortaklığı.", - keywords: "viral ürünler, trend ürünler, gadget, TikTok ürünleri, 2026 trendleri, Instagram trendleri, YouTube gadgetler, lifestyle ürünleri", - metadataBase: new URL("https://trendverse.com"), - alternates: { - canonical: "https://trendverse.com", - }, - openGraph: { - title: "TrendVerse - Viral Ürünleri Keşfet", - description: "Dünyadaki en trend ve viral olan ürünleri bir platformda bulun", - url: "https://trendverse.com", - siteName: "TrendVerse", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/travel-still-life-collection_23-2148837284.jpg", - alt: "TrendVerse - Viral Products Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "TrendVerse - Viral Ürünler Keşif Platformu", - description: "En viral ve trend olan ürünleri keşfet", - images: ["http://img.b2bpic.net/free-photo/travel-still-life-collection_23-2148837284.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TrendVerse - Discover Viral Products", description: "Discover the world's most viral and trending products on TrendVerse"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +