|
|
|
|
@@ -1,74 +1,28 @@
|
|
|
|
|
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 { 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 interTight = Inter_Tight({
|
|
|
|
|
variable: "--font-inter-tight",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
|
|
|
const geistMono = Geist_Mono({
|
|
|
|
|
variable: "--font-geist-mono", 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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|