Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a70f4446ec | |||
| beeb2e5df3 | |||
| 8df26c48a4 |
@@ -1,58 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Inter_Tight } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ZackZ Resell Apparel | Authenticated Designer Streetwear", description: "Curated designer streetwear from Spider, Hellstar, Denim Tears & more. 100% authenticated, verified condition, money-back guarantee. Shop rare drops now.", keywords: "resale streetwear, authenticated designer apparel, spider hoodie, hellstar, denim tears, hypebeast, luxury resale, streetwear marketplace", metadataBase: new URL("https://zackzresell.com"),
|
title: "ZackZ Resell - Authenticated Streetwear", description: "Curated drops from Spider, Hellstar, Denim Tears, and more. Limited inventory—each piece is real, verified, and ready to ship."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://zackzresell.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "ZackZ Resell Apparel | Rare Streetwear Authenticated", description: "Limited-edition designer streetwear verified authentic. Shop curated drops from Spider, Hellstar, Denim Tears & Essentials.", url: "https://zackzresell.com", siteName: "ZackZ Resell Apparel", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/red-haired-punk-girl-wear-black-with-bass-guitar-abadoned-place-portrait-gothic-woman-musician_627829-14020.jpg", alt: "ZackZ Featured Streetwear Collection"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "ZackZ Resell Apparel | Authenticated Streetwear", description: "Rare designer drops verified authentic. Shop Spider, Hellstar, Denim Tears & more.", images: ["http://img.b2bpic.net/free-photo/red-haired-punk-girl-wear-black-with-bass-guitar-abadoned-place-portrait-gothic-woman-musician_627829-14020.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ export default function LandingPage() {
|
|||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "How do you authenticate each piece?", content: "Every item undergoes a rigorous multi-point inspection by certified authenticators. We verify materials, stitching, tags, and holographic markers. Full authentication reports included with each purchase."},
|
id: "1", title: "How do you authenticate each piece?", content: "We use a rigorous 3-point verification process: (1) Materials & Craftsmanship – Verified by certified authenticators; (2) Tags & Labels – Holographic markers and serial numbers checked; (3) Wear Assessment – Detailed condition reports with high-resolution photos. Every item includes full authentication documentation. If authenticity is ever questioned, we offer a 100% refund guarantee."},
|
||||||
{
|
{
|
||||||
id: "2", title: "What if I'm not satisfied with my purchase?", content: "If authenticity is ever questioned, we provide a full refund. Additionally, we offer 7-day returns on all items for any reason. Your satisfaction is guaranteed."},
|
id: "2", title: "What if I'm not satisfied with my purchase?", content: "If authenticity is ever questioned, we provide a full refund. Additionally, we offer 7-day returns on all items for any reason. Your satisfaction is guaranteed."},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user