4 Commits

Author SHA1 Message Date
3ac043cfa8 Merge version_5 into main
Merge version_5 into main
2026-03-05 04:05:40 +00:00
eed494b176 Update src/app/page.tsx 2026-03-05 04:05:35 +00:00
529354f5d5 Update src/app/layout.tsx 2026-03-05 04:05:35 +00:00
692e6b8d19 Merge version_4 into main
Merge version_4 into main
2026-03-05 04:03:21 +00:00
2 changed files with 31 additions and 6 deletions

View File

@@ -1,8 +1,14 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Quality Threads - Premium Embroidery Digitizing Services", description: "Fast, accurate embroidery digitizing trusted by professionals worldwide. 200K+ designs perfected since 2002."};
@@ -14,7 +20,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1384,4 +1392,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

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