Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-05 04:00:21 +00:00
2 changed files with 9 additions and 64 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -51,7 +51,7 @@ export default function HomePage() {
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[
{ text: "Upload Your Design", href: "/order" },
{ text: "Get Your Design Digitized", href: "/order" },
{ text: "Get Quote", href: "#contact" },
]}
buttonAnimation="slide-up"
@@ -230,4 +230,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}