Merge version_2 into main #2
@@ -1,49 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Nula | Streetwear & Vintage Fashion | Urban Drops & Authentic Pieces", description: "Discover curated streetwear collections and authentic vintage pieces. Shop limited drops, rare finds, and timeless essentials. Nula blends modern street style with vintage culture.", keywords: "streetwear, vintage fashion, urban clothing, limited drops, authentic vintage, street style", openGraph: {
|
||||
title: "Nula - Where Streetwear Meets Vintage", description: "Curated urban fashion blending modern streetwear with authentic vintage pieces.", siteName: "Nula", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg", alt: "Nula streetwear and vintage collection"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Nula - Streetwear & Vintage Fashion", description: "Discover curated streetwear drops and authentic vintage pieces.", images: ["http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Nula - Streetwear & Vintage Fashion", description: "Curated urban fashion blending modern streetwear aesthetics with authentic vintage pieces."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg"
|
||||
imageAlt="Nula streetwear and vintage fashion collection hero"
|
||||
buttons={[
|
||||
{ text: "Shop Collections", href: "products" },
|
||||
{ text: "Browse New Drops", href: "products" },
|
||||
{ text: "Explore Vintage", href: "feature" },
|
||||
]}
|
||||
/>
|
||||
@@ -101,9 +101,11 @@ export default function LandingPage() {
|
||||
description="Explore our dual approach to urban fashion."
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Streetwear Drops", author: "Curated Monthly", description: "Modern pieces that capture the pulse of urban culture. Limited quantities, bold designs, and exclusive collaborations that define contemporary street style.", tags: ["New", "Limited"], imageSrc: "http://img.b2bpic.net/free-photo/photo-young-lady-walking-tunnel_114579-92560.jpg", imageAlt: "Streetwear collection display"},
|
||||
id: "1", title: "Streetwear Drops", author: "Curated Monthly", description: "Modern pieces that capture the pulse of urban culture. Limited quantities, bold designs, and exclusive collaborations that define contemporary street style.", tags: ["New", "Limited"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-young-lady-walking-tunnel_114579-92560.jpg", imageAlt: "Streetwear collection display"},
|
||||
{
|
||||
id: "2", title: "Vintage Archive", author: "Authentic Finds", description: "Timeless pieces sourced from trusted collections worldwide. Authentic vintage gems ranging from 90s nostalgia to early 2000s essentials that transcend trends.", tags: ["Authentic", "Timeless"], imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-holding-blue-shirt-rail-clothing-shop_23-2148175654.jpg", imageAlt: "Vintage clothing collection archive"},
|
||||
id: "2", title: "Vintage Archive", author: "Authentic Finds", description: "Timeless pieces sourced from trusted collections worldwide. Authentic vintage gems ranging from 90s nostalgia to early 2000s essentials that transcend trends.", tags: ["Authentic", "Timeless"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-holding-blue-shirt-rail-clothing-shop_23-2148175654.jpg", imageAlt: "Vintage clothing collection archive"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user