Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4952ee5dea | |||
| e595bf00b6 | |||
| f8168468a5 | |||
| 1867b99ac2 | |||
| fd827e0397 |
@@ -1,73 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const mulish = Mulish({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-mulish",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "TrendVerse - Dünyanın En Viral Ürünlerini Keşfet",
|
title: "TrendVerse - Discover Viral Products", description: "Discover the world's most viral and trending products on TrendVerse"};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Trendleri Keşfet", href: "#featured-products"},
|
text: "Şimdi Keşfet", href: "#featured-products"},
|
||||||
{
|
{
|
||||||
text: "Kategorilere Gözat", href: "/categories"},
|
text: "Kategorilere Gözat", href: "/categories"},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user