Add src/app/street-style/page.tsx

This commit is contained in:
2026-06-10 13:32:40 +00:00
parent 68884a0196
commit 17a84ad6c5

View File

@@ -0,0 +1,85 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Instagram, Linkedin, Twitter } from "lucide-react";
export default function StreetStylePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Street Style", id: "/street-style" }, { name: "Old Money", id: "/old-money" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
];
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="inset"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
logoSrc="http://img.b2bpic.net/free-vector/flat-slow-fashion-badge-collection_23-2148823303.jpg"
brandName="StyleHaven"
button={{
text: "Shop Now", href: "/street-style"}}
/>
</div>
<div id="street-style-products" data-section="street-style-products">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Urban Edge: Our Street Style Collection"
description="Dive into the world of contemporary street fashion. Discover bold designs, comfortable fits, and statement pieces that define modern urban style."
products={[
{
id: "ss-1", brand: "StyleHaven", name: "Oversized Graphic Tee", price: "$45.00", rating: 4,
reviewCount: "75 reviews", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-wearing-total-denim-outfit_23-2150105188.jpg", imageAlt: "Woman in oversized graphic tee"},
{
id: "ss-2", brand: "StyleHaven", name: "Distressed Denim Jacket", price: "$95.00", rating: 5,
reviewCount: "60 reviews", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-wearing-knitted-cap_23-2148923343.jpg", imageAlt: "Person in distressed denim jacket"},
{
id: "ss-3", brand: "StyleHaven", name: "Cargo Jogger Pants", price: "$70.00", rating: 4,
reviewCount: "88 reviews", imageSrc: "http://img.b2bpic.net/free-photo/confident-young-man-walking-european-city-street_158595-4728.jpg", imageAlt: "Man in cargo jogger pants"},
{
id: "ss-4", brand: "StyleHaven", name: "Chunky Sneakers", price: "$110.00", rating: 5,
reviewCount: "50 reviews", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-group-friends-2000s-fashion-style-posing-with-camera_23-2149442851.jpg", imageAlt: "Model wearing chunky sneakers"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="StyleHaven"
copyrightText="© 2024 StyleHaven. All rights reserved."
socialLinks={[
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}