From af09a99cb088b37418605d2fb5c1af9f4ecdd0d0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:55:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 36 ++++++------------------------------ 1 file changed, 6 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 57eabf3..cc7126b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional UGC Content & Creator Portfolio", description: "Discover authentic, high-quality user-generated content from skilled creators. Connect with brands and drive conversions through authentic storytelling.", keywords: "UGC, user-generated content, creators, authentic content, product marketing, social media", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional UGC Content & Creator Portfolio", description: "Discover authentic, high-quality user-generated content from skilled creators. Connect with brands and drive conversions through authentic storytelling.", siteName: "UGC", type: "website"}, - twitter: { - card: "summary_large_image", title: "Professional UGC Content & Creator Portfolio", description: "Discover authentic, high-quality user-generated content from skilled creators."}, -}; + title: "UGC - Professional User-Generated Content", description: "Connect with skilled creators and transform your marketing strategy with authentic, high-quality UGC content."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}