From 95497870edfaac503f625297a6bab6de162626f4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:30:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 +++++++--------------------------------------- 1 file changed, 10 insertions(+), 60 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba4937b..39213d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,20 @@ -import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "TrendPin - Discover & Monetize Visual Content", - description: "Join TrendPin, the ultimate platform for discovering trending images and videos, uploading content, and earning money as a creator. Pinterest-style masonry layout with advanced monetization.", - keywords: "social media, content discovery, creator monetization, trending platform, image sharing, video platform", - metadataBase: new URL("https://trendpin.com"), - alternates: { - canonical: "https://trendpin.com", - }, - openGraph: { - title: "TrendPin - Discover & Monetize Visual Content", - description: "Join TrendPin and start earning money from your creative content. Pinterest-style discovery platform with creator monetization.", - url: "https://trendpin.com", - siteName: "TrendPin", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASylfTGhuZNwH5jW6ydIXxdHBh/a-vibrant-pinterest-style-masonry-grid-l-1772602046509-614cef50.png", - alt: "TrendPin Masonry Grid Interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "TrendPin - Discover & Monetize Visual Content", - description: "Join TrendPin and start earning money from your creative content today.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASylfTGhuZNwH5jW6ydIXxdHBh/a-vibrant-pinterest-style-masonry-grid-l-1772602046509-614cef50.png", - ], - }, - robots: { - index: true, - follow: true, - }, + title: 'TrendPin - Discover, Create & Monetize Visual Content', + description: 'The ultimate platform for discovering trending images and videos, uploading your best content, and earning money as a creator.', + keywords: ['social media', 'content creation', 'monetization', 'visual content', 'creators'], }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}