Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ac043cfa8 | |||
| eed494b176 | |||
| 529354f5d5 | |||
| 692e6b8d19 | |||
| 2d3d4bb2ca | |||
| 315eeb583b | |||
| a9b66816c4 | |||
| 66fc3a53d2 | |||
| 9ce862a52c | |||
| 5c11a98f37 | |||
| b100036233 | |||
| 9464b8570b | |||
| 8e5c799a0f | |||
| 350e86eaa6 | |||
| 42cd41fc1d |
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -65,7 +65,24 @@ export default function HomePage() {
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
ariaLabel="Hero section with embroidery digitizing showcase"
|
||||
containerClassName="pb-16 md:pb-20"
|
||||
/>
|
||||
<div className="flex justify-center items-center gap-8 md:gap-12 px-4 md:px-8 pb-8 md:pb-12 max-w-5xl mx-auto">
|
||||
<div className="text-center">
|
||||
<div className="text-lg md:text-xl font-semibold text-foreground">20+ Years</div>
|
||||
<div className="text-xs md:text-sm text-muted-foreground mt-1">Since 2002</div>
|
||||
</div>
|
||||
<div className="hidden sm:block w-px h-12 bg-border"></div>
|
||||
<div className="text-center">
|
||||
<div className="text-lg md:text-xl font-semibold text-foreground">200K+ Designs</div>
|
||||
<div className="text-xs md:text-sm text-muted-foreground mt-1">Perfected</div>
|
||||
</div>
|
||||
<div className="hidden sm:block w-px h-12 bg-border"></div>
|
||||
<div className="text-center">
|
||||
<div className="text-lg md:text-xl font-semibold text-foreground">5-Star Rated</div>
|
||||
<div className="text-xs md:text-sm text-muted-foreground mt-1">By Professionals</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="trust" data-section="trust">
|
||||
|
||||
Reference in New Issue
Block a user