diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 554ce00..a793199 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Embroidery Digitizing Services | Quality Threads", - description: "Professional embroidery digitizing services trusted by 10,000+ businesses. Logo, cap, 3D puff, and patch digitizing from $10. 200K+ designs perfected.", - keywords: "embroidery digitizing, logo digitizing, cap digitizing, 3D puff digitizing, patch digitizing, embroidery services", - metadataBase: new URL("https://qualitythreads.com"), - alternates: { - canonical: "https://qualitythreads.com", - }, - openGraph: { - title: "Premium Embroidery Digitizing Services | Quality Threads", - description: "Fast, accurate digitizing trusted by embroidery professionals worldwide. 20+ years of excellence.", - siteName: "Quality Threads", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/female-business-owner-working_23-2148828308.jpg", - alt: "Quality Threads embroidery digitizing services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Premium Embroidery Digitizing Services | Quality Threads", - description: "Professional embroidery digitizing from $10. 20+ years trusted by 10,000+ businesses.", - images: ["http://img.b2bpic.net/free-photo/female-business-owner-working_23-2148828308.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Quality Threads - Premium Embroidery Digitizing Services", description: "Fast, accurate embroidery digitizing trusted by professionals worldwide. 200K+ designs perfected since 2002."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}