From ebae1df518280899f88b7744eb7f77bd4bc2f582 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:14:40 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c33926c..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "StyleDrop | Premium Dropshipping Fashion Platform", description: "Start your fashion dropshipping business today. Access trending clothing collections, wholesale pricing, and seamless order fulfillment. No inventory required.", keywords: "dropshipping, fashion, clothing, wholesale, e-commerce, online store, fashion business", metadataBase: new URL("https://styledrop.com"), - alternates: { - canonical: "https://styledrop.com"}, - openGraph: { - title: "StyleDrop | Premium Dropshipping Fashion Platform", description: "Start your fashion dropshipping business today. Access trending clothing collections, wholesale pricing, and seamless order fulfillment.", url: "https://styledrop.com", siteName: "StyleDrop", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/empty-clothing-store-mall_482257-91309.jpg", alt: "premium clothing collection display fashion"}, - ], - }, - twitter: { - card: "summary_large_image", title: "StyleDrop | Premium Dropshipping Fashion Platform", description: "Start your fashion dropshipping business today. Access trending clothing collections and seamless fulfillment.", images: ["http://img.b2bpic.net/free-photo/empty-clothing-store-mall_482257-91309.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} +