Merge version_2 into main #4
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -188,7 +188,8 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "professional", tag: "Professional Plan", price: "$9.99", period: "/month", description: "For active traders and small businesses.", button: { text: "Start Pro", href: "#contact" }, featuresTitle: "What's Included:", features: [
|
||||
"Unlimited listings", "Priority support", "Advanced analytics", "Bulk upload tools", "Featured badges"
|
||||
]
|
||||
],
|
||||
cardClassName: "ring-2 ring-primary shadow-lg shadow-primary/20 scale-105"
|
||||
},
|
||||
{
|
||||
id: "enterprise", tag: "Enterprise Plan", price: "Custom", period: "pricing", description: "For large-scale operations and corporations.", button: { text: "Contact Sales", href: "#contact" }, featuresTitle: "What's Included:", features: [
|
||||
|
||||
Reference in New Issue
Block a user