@@ -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 halan t = Halan t( {
variable : "--font-halant" ,
subsets : [ "latin" ] ,
weight : [ "300" , "400" , "500" , "600" , "700" ] ,
const geis t = Geis t( {
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 (
< html lang = "en" suppressHydrationWarning >
< ServiceWrapper >
< body
className = { ` ${ halant . variable } ${ mulish . variable } ${ inter . variable } antialiased ` }
>
< Tag / >
{ children }
< html lang = "en" >
< body className = { ` ${ geist . variable } ${ geistMono . variable } antialiased ` } >
{ children }
< script
dangerouslySetInnerHTML = { {
__html : `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
} }
/ >
< / body >
< / ServiceWrapper >
< / html >
) ;
}
}