6 Commits

Author SHA1 Message Date
a24e38eaed Update src/app/page.tsx 2026-03-07 06:24:14 +00:00
378e3db46b Update src/app/page.tsx 2026-03-07 06:22:58 +00:00
953f24c3d4 Update src/app/layout.tsx 2026-03-07 06:22:58 +00:00
5d43662ffe Merge version_1 into main
Merge version_1 into main
2026-03-07 06:21:40 +00:00
8d819724c9 Merge version_1 into main
Merge version_1 into main
2026-03-07 06:20:23 +00:00
6a1cd60f0a Merge version_1 into main
Merge version_1 into main
2026-03-07 06:18:52 +00:00

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "TradePulse - Buy & Sell Premium Products Online", description: "Discover trusted marketplace for buying and selling premium products. Join 50K+ traders. Secure transactions, verified sellers, transparent pricing.", keywords: "buy sell marketplace, online trading platform, ecommerce, trusted sellers", metadataBase: new URL("https://tradepulse.com"),
alternates: {
canonical: "https://tradepulse.com"},
openGraph: {
title: "TradePulse - Your Trusted Trading Platform", description: "Buy and sell premium products with confidence. Join thousands of successful traders.", url: "https://tradepulse.com", siteName: "TradePulse", type: "website", images: [
{
url: "http://img.b2bpic.net/free-vector/gradient-dark-mode-app-template_23-2150498015.jpg", alt: "TradePulse Marketplace Platform"},
],
},
twitter: {
card: "summary_large_image", title: "TradePulse - Buy & Sell Online", description: "Trusted marketplace for premium product trading", images: ["http://img.b2bpic.net/free-vector/gradient-dark-mode-app-template_23-2150498015.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "TradePulse - Buy and Sell Premium Products", description: "Trade with confidence on TradePulse. Secure marketplace for buying and selling premium products. Trusted by thousands of traders worldwide."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}