From 50ff528dc88d6ac850fd815f6007bddb5a2f4a99 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:50:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 49e6b95..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "DropHub - Start Your Dropshipping Business Today", description: "Launch your e-commerce empire with DropHub. Zero inventory, zero risk. Connect with suppliers, manage orders, and earn passive income with our all-in-one dropshipping platform.", keywords: "dropshipping, ecommerce, online store, passive income, supplier platform", metadataBase: new URL("https://drophub.io"), - alternates: { - canonical: "https://drophub.io"}, - openGraph: { - title: "DropHub - Dropshipping Made Simple", description: "Build a profitable online store without inventory. Join thousands of successful sellers.", url: "https://drophub.io", siteName: "DropHub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/purchase-online-interface-concept_23-2148664689.jpg", alt: "DropHub platform showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "DropHub - Start Dropshipping Today", description: "Zero inventory. Zero risk. Pure profit.", images: ["http://img.b2bpic.net/free-vector/purchase-online-interface-concept_23-2148664689.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +