Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 21:09:41 +00:00
2 changed files with 15 additions and 62 deletions

View File

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

View File

@@ -104,7 +104,7 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[
{
text: "Trendleri Keşfet", href: "#featured-products"},
text: "Şimdi Keşfet", href: "#featured-products"},
{
text: "Kategorilere Gözat", href: "/categories"},
]}
@@ -359,4 +359,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}