Merge version_2 into main #5

Merged
bender merged 1 commits from version_2 into main 2026-03-07 14:32:15 +00:00

View File

@@ -1,55 +1,18 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "DropHub: Free Dropshipping Platform to Earn Money", description: "Start dropshipping for free. Find trending products, list them instantly, and earn commissions. No inventory, no upfront costs. Join thousands of successful sellers making money today.", keywords: "dropshipping, dropship platform, earn money, ecommerce, passive income, online business, dropshipping software", robots: {
index: true,
follow: true,
},
openGraph: {
title: "DropHub: Turn Any Product Into Profit", description: "Join thousands of successful sellers. Start dropshipping for free with curated products, automated fulfillment, and proven profit margins.", siteName: "DropHub", type: "website", images: [
{
url: "http://img.b2bpic.net/free-psd/gradient-sales-discount-landing-page-template_23-2150683631.jpg", alt: "DropHub dropshipping platform dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "DropHub: Start Dropshipping for Free", description: "Zero upfront costs. Find products. List them. Earn commissions. Perfect for entrepreneurs and side hustlers.", images: [
"http://img.b2bpic.net/free-psd/gradient-sales-discount-landing-page-template_23-2150683631.jpg"],
},
};
title: "DropHub - Dropshipping Platform", description: "Turn any product into profit with DropHub. Find winning products, list them instantly, and earn commissions. No inventory. No upfront costs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}