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

This commit is contained in:
2026-06-10 13:32:38 +00:00
parent 383259669b
commit e2c52db5b3

View File

@@ -0,0 +1,111 @@
"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 CleanStylePage() {
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={[
{
name: "Home", id: "/"},
{
name: "Clean Style", id: "/clean-style"},
{
name: "Kids Clothes", id: "/kids-clothes"},
{
name: "About", id: "#about"},
{
name: "Features", id: "#features"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "FAQ", id: "#faq"},
{
name: "Contact", id: "#contact"},
]}
logoSrc="http://img.b2bpic.net/free-vector/flat-slow-fashion-badge-collection_23-2148823303.jpg"
brandName="StyleHaven"
button={{
text: "Shop Now", href: "/clean-style"}}
/>
</div>
<div id="clean-style-description" data-section="clean-style-description">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Clean Style Collection"
description="Discover our curated selection of minimalist and sophisticated apparel, perfect for building a versatile and elegant wardrobe."
/>
</div>
<div id="clean-style-products" data-section="clean-style-products">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{
id: "cs-1", brand: "StyleHaven", name: "Minimalist White Blouse", price: "$65.00", rating: 5,
reviewCount: "75 reviews", imageSrc: "http://img.b2bpic.net/free-photo/woman-white-blouse-stands-street_23-2148767930.jpg", imageAlt: "Minimalist white blouse"},
{
id: "cs-2", brand: "StyleHaven", name: "Straight Leg Trousers", price: "$95.00", rating: 4,
reviewCount: "60 reviews", imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-sunglasses-posing-park_23-2148560378.jpg", imageAlt: "Straight leg trousers"},
{
id: "cs-3", brand: "StyleHaven", name: "Classic Beige Trench Coat", price: "$180.00", rating: 5,
reviewCount: "45 reviews", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-beige-coat-walking-street-christmas_1303-26105.jpg", imageAlt: "Classic beige trench coat"},
{
id: "cs-4", brand: "StyleHaven", name: "Sleek Black Midi Skirt", price: "$70.00", rating: 5,
reviewCount: "50 reviews", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-stylish-girl-street_171337-4345.jpg", imageAlt: "Sleek black midi skirt"},
]}
title="Curated for Timeless Elegance"
description="Explore our latest arrivals in clean style fashion."
/>
</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>
);
}