From 65e9c8baa4f2957df38f508996f0cffd5d0b3fe7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:24:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 64 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 56 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c317fe1..72f565f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Uniserve - Verified Products & Services Platform", - description: "Uniserve is a trusted platform where verified students, entrepreneurs, and professionals publish products and services. Rigorous verification, plagiarism detection, and AI content screening ensure quality.", - keywords: "verified marketplace, products, services, verification platform, plagiarism detection, AI detection, trusted platform, student entrepreneurs", - metadataBase: new URL("https://uniserve.com"), - alternates: { - canonical: "https://uniserve.com", - }, - openGraph: { - title: "Uniserve - Build Your Future", - description: "Discover the verified marketplace for students, entrepreneurs, and professionals. Secure, transparent, and trustworthy platform for publishing products and services.", - url: "https://uniserve.com", - siteName: "Uniserve", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUhxyJTPASmi8jN2kJuzsD3cv9/a-modern-software-dashboard-interface-sh-1772653412252-bed7330d.png", - alt: "Uniserve verification dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Uniserve - Build Your Future", - description: "The verified marketplace for students, entrepreneurs, and professionals.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUhxyJTPASmi8jN2kJuzsD3cv9/a-modern-software-dashboard-interface-sh-1772653412252-bed7330d.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Uniserve - Verified Platform for Creators", description: + "Uniserve is the trusted platform where students, entrepreneurs, and professionals publish their verified products, services, and expertise. Join a secure ecosystem with rigorous quality checks and transparent verification."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}