Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ac043cfa8 | |||
| eed494b176 | |||
| 529354f5d5 | |||
| 692e6b8d19 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user