Update src/app/layout.tsx

This commit is contained in:
2026-03-04 23:24:55 +00:00
parent 7df4e13a96
commit 65e9c8baa4

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1430,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}