From 72c2c2646879c400090c3ee89780132a56ebd739 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:26:57 +0000 Subject: [PATCH 01/12] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 83061dd..28299d9 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -5,7 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import BlogCardOne from "@/components/sections/blog/BlogCardOne"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Instagram, Twitter, Facebook, Pinterest, Heart, Camera } from "lucide-react"; +import { Instagram, Twitter, Facebook, Heart, Camera } from "lucide-react"; import Link from "next/link"; export default function BlogPage() { @@ -102,9 +102,6 @@ export default function BlogPage() { { icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook"}, - { - icon: Pinterest, - href: "https://pinterest.com", ariaLabel: "Pinterest"}, ]} /> -- 2.49.1 From 11cc519543e406fe3b7d7a4d6fa0f2ad2b2cf01e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:26:57 +0000 Subject: [PATCH 02/12] Update src/app/cart/page.tsx --- src/app/cart/page.tsx | 166 ++++-------------------------------------- 1 file changed, 14 insertions(+), 152 deletions(-) diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 083663c..fecb232 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -1,54 +1,11 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Instagram, Twitter, Facebook, Pinterest, Trash2 } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function CartPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, - { name: "Men", id: "/men" }, - { name: "Women", id: "/women" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, - ]; - - const cartItems = [ - { - id: "product-001", - name: "Bold Street Statement Tee", - price: 49.99, - quantity: 2, - image: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448773.jpg", - size: "M", - color: "Black", - }, - { - id: "product-002", - name: "Minimal Modern Tee", - price: 44.99, - quantity: 1, - image: "http://img.b2bpic.net/free-vector/merry-christmas-with-creative-card_23-2147578466.jpg", - size: "L", - color: "White", - }, - ]; - - const subtotal = cartItems.reduce((sum, item) => sum + item.price * item.quantity, 0); - const shipping = 9.99; - const tax = subtotal * 0.1; - const total = subtotal + shipping + tax; - - const socialLinks = [ - { icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" }, - { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }, - { icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }, - { icon: Pinterest, href: "https://pinterest.com", ariaLabel: "Pinterest" }, - ]; - return ( -
-

Shopping Cart

-

You have {cartItems.length} items in your cart

-
- -
-
-
-
- {cartItems.map((item) => ( -
-
- {item.name} -
-
-

{item.name}

-

- {item.color} • Size {item.size} -

-

${item.price.toFixed(2)}

-
-
- -
- - {item.quantity} - -
-
-
- ))} -
- -
- - ← Continue Shopping - -
-
- -
-
-

Order Summary

- -
-
- Subtotal - ${subtotal.toFixed(2)} -
-
- Shipping - ${shipping.toFixed(2)} -
-
- Tax - ${tax.toFixed(2)} -
-
- -
- Total - ${total.toFixed(2)} -
- - - - - -
-

- Free shipping on orders over $100 -

-
-
-
-
-
- -
-
-

Special Offer

-

- Get 15% off your order with code WELCOME15 -

- -
-
-
-- 2.49.1 From 7e977e4ed9031ac47b94d349b15c2a013a6c98de Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:26:58 +0000 Subject: [PATCH 03/12] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 123 +++++---------------------------------- 1 file changed, 13 insertions(+), 110 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4a8bac0..058916b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,22 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import Link from "next/link"; -import { Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function ContactPage() { - const navItems = [ - { name: "Home", id: "hero" }, - { name: "Shop", id: "products" }, - { name: "Men", id: "men-category" }, - { name: "Women", id: "women-category" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - ]; - return ( -
- -
- -
- -
- -- 2.49.1 From a8577c289888ac3616cdf4a731dab2bcceb30a4d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:26:58 +0000 Subject: [PATCH 04/12] Update src/app/men/page.tsx --- src/app/men/page.tsx | 181 ++----------------------------------------- 1 file changed, 6 insertions(+), 175 deletions(-) diff --git a/src/app/men/page.tsx b/src/app/men/page.tsx index 9524ca6..582579e 100644 --- a/src/app/men/page.tsx +++ b/src/app/men/page.tsx @@ -2,14 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Sparkles, TrendingUp, Heart, Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; -import Link from "next/link"; +import { Instagram, Twitter, Facebook } from "lucide-react"; -export default function MensPage() { +export default function MenPage() { return ( -
- -
- -
- -
- -
- -
- -- 2.49.1 From a37c6f2881f05e0dde4e2bc43ed1038a2407cbbc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:26:59 +0000 Subject: [PATCH 05/12] Update src/app/page.tsx --- src/app/page.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 184d3ff..044859d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni import BlogCardOne from "@/components/sections/blog/BlogCardOne"; import FooterCard from "@/components/sections/footer/FooterCard"; import Link from "next/link"; -import { Sparkles, Zap, TrendingUp, Star, Heart, Camera, Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Sparkles, Zap, TrendingUp, Star, Heart, Camera, Instagram, Twitter, Facebook } from "lucide-react"; export default function HomePage() { return ( @@ -86,7 +86,7 @@ export default function HomePage() { description="Discover our curated collections for men and women" tag="Featured" tagIcon={Zap} - tagAnimation="fade-in" + tagAnimation="slide-up" textboxLayout="default" animationType="slide-up" useInvertedBackground={false} @@ -228,8 +228,7 @@ export default function HomePage() { socialLinks={[ { icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" }, { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }, - { icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }, - { icon: Pinterest, href: "https://pinterest.com", ariaLabel: "Pinterest" } + { icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" } ]} /> -- 2.49.1 From ac642322fae702f56cba04e7f77d2958898ff510 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:26:59 +0000 Subject: [PATCH 06/12] Update src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 132 +++++---------------------------------- 1 file changed, 15 insertions(+), 117 deletions(-) diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx index 7018b53..aafc9f8 100644 --- a/src/app/privacy/page.tsx +++ b/src/app/privacy/page.tsx @@ -3,19 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import FooterCard from "@/components/sections/footer/FooterCard"; -import Link from "next/link"; -import { Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function PrivacyPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, - { name: "Men", id: "/men" }, - { name: "Women", id: "/women" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, - ]; - return ( -
-
-
-

- Privacy Policy -

-

- Last updated: January 2025 -

-
- -
-
-

- 1. Introduction -

-

- Your Logo ("we," "us," "our," or "Company") operates the website. This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data. -

-
- -
-

- 2. Information Collection and Use -

-

- We collect several different types of information for various purposes to provide and improve our Service to you. -

-
    -
  • Personal Data: Email address, first name, last name, phone number, address, state, province, ZIP/postal code, city, cookies, and usage data
  • -
  • Usage Data: Information about how you interact with our Service
  • -
  • Location Data: With your permission, we may collect your precise location information
  • -
-
- -
-

- 3. Security of Data -

-

- The security of your data is important to us, but remember that no method of transmission over the Internet or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Data, we cannot guarantee its absolute security. -

-
- -
-

- 4. Changes to This Privacy Policy -

-

- We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "effective date" at the top of this Privacy Policy. -

-
- -
-

- 5. Contact Us -

-

- If you have any questions about this Privacy Policy, please contact us at: -

-
-

Your Logo

-

Email: privacy@yourlogo.com

-

Address: 123 Fashion Street, Style City, SC 12345

-
-
- -
- - Back to Home - -
-
-
-
- -
+
+
); } \ No newline at end of file -- 2.49.1 From d035bd5661f00a387e5c7b542c8ea39db9b5e26c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:00 +0000 Subject: [PATCH 07/12] Update src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 154 ++++------------------------------ 1 file changed, 14 insertions(+), 140 deletions(-) diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 8c6e3c9..76dcf2d 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -1,90 +1,11 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { ShoppingCart, Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function ProductPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, - { name: "Men", id: "/men" }, - { name: "Women", id: "/women" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, - ]; - - const relatedProducts = [ - { - id: "product-002", - name: "Minimal Modern Tee", - price: "$44.99", - variant: "White • 3 Colors", - imageSrc: "http://img.b2bpic.net/free-vector/merry-christmas-with-creative-card_23-2147578466.jpg?_wi=8", - imageAlt: "Minimal modern design graphic tee", - isFavorited: false, - }, - { - id: "product-003", - name: "Vibrant Artistic Print", - price: "$54.99", - variant: "Multi • 4 Colors", - imageSrc: "http://img.b2bpic.net/free-vector/gospel-word-concept_23-2148717553.jpg?_wi=9", - imageAlt: "Vibrant artistic graphic t-shirt", - isFavorited: false, - }, - { - id: "product-004", - name: "Contemporary Design Tee", - price: "$49.99", - variant: "Navy • 6 Colors", - imageSrc: "http://img.b2bpic.net/free-vector/crystal-typeface_1284-46616.jpg?_wi=9", - imageAlt: "Contemporary design graphic tee", - isFavorited: false, - }, - ]; - - const testimonials = [ - { - id: "1", - name: "Alex Johnson", - handle: "@alexstyle", - testimonial: "Amazing quality and design! The fit is perfect and the graphic print is stunning. Already ordered my second tee!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-smiling-boy-cafe_23-2148436234.jpg?_wi=3", - imageAlt: "Alex Johnson profile", - }, - { - id: "2", - name: "Sarah Chen", - handle: "@sarahwears", - testimonial: "Love these tees! The printing is sharp, the material is soft, and the designs are so unique. Best streetwear brand ever!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling_1187-1107.jpg?_wi=3", - imageAlt: "Sarah Chen profile", - }, - { - id: "3", - name: "Marcus Williams", - handle: "@marcusfashion", - testimonial: "Great tees with excellent customer service. The designs stand out and compliments keep coming. Highly recommended!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg?_wi=3", - imageAlt: "Marcus Williams profile", - }, - ]; - - const socialLinks = [ - { icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" }, - { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }, - { icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }, - { icon: Pinterest, href: "https://pinterest.com", ariaLabel: "Pinterest" }, - ]; - return ( -
-
-
-
- Bold Street Statement Tee -
-
-

Bold Street Statement Tee

-

Black • 5 Colors Available

-

$49.99

-

- Elevate your streetwear game with our Bold Street Statement Tee. Featuring premium quality fabric, exceptional graphic printing, and a modern design that stands out. Perfect for making a statement with style and confidence. -

-
- - -
-
-
-
-
- - - -
- -
-
-- 2.49.1 From d5904a200ce7855393ec0b61d363a55d61bbd88a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:00 +0000 Subject: [PATCH 08/12] Update src/app/returns/page.tsx --- src/app/returns/page.tsx | 184 ++------------------------------------- 1 file changed, 6 insertions(+), 178 deletions(-) diff --git a/src/app/returns/page.tsx b/src/app/returns/page.tsx index 00484f4..6a1dfd3 100644 --- a/src/app/returns/page.tsx +++ b/src/app/returns/page.tsx @@ -1,10 +1,9 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Instagram, Twitter, Facebook, Pinterest, CheckCircle, Truck, Clock, RefreshCw } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function ReturnsPage() { return ( @@ -29,192 +28,21 @@ export default function ReturnsPage() { { name: "Men", id: "/men" }, { name: "Women", id: "/women" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "/contact" } ]} - button={{ - text: "Cart", - href: "/cart", - }} + button={{ text: "Cart", href: "/cart" }} animateOnLoad={true} /> -
-
-

Returns & Shipping

-

- We want you to be completely satisfied with your purchase. Learn about our hassle-free return and shipping policies. -

-
-
- -
-
-
-
-
- -

Shipping Options

-
-
-
-

Standard Shipping (5-7 business days)

-

Free on orders over $50. $6.99 for orders under $50.

-
-
-

Express Shipping (2-3 business days)

-

$14.99 flat rate on all orders.

-
-
-

Overnight Shipping (1 business day)

-

$24.99 flat rate on all orders.

-
-
-
- -
-
- -

Processing Time

-
-
-

- All orders are processed within 1-2 business days of purchase. Orders placed on weekends or holidays will be processed on the next business day. -

-

- Once your order ships, you'll receive a tracking number via email so you can monitor your package. -

-
-
-
- -
-

Return Policy

- -
-
- -
-

30-Day Money-Back Guarantee

-

- We offer a hassle-free 30-day return window from the date of delivery. If you're not completely satisfied, we'll process a full refund. -

-
-
-
- -
-
-

Condition Requirements

-

Items must be:

-
    -
  • - - Unworn and unwashed with all tags attached -
  • -
  • - - In original packaging with receipt or order number -
  • -
  • - - Free from damage or defects (normal wear excluded) -
  • -
-
- -
-

How to Initiate a Return

-
    -
  1. Contact our customer service team with your order number
  2. -
  3. Receive a prepaid return shipping label
  4. -
  5. Package your item securely with the label
  6. -
  7. Drop off at any shipping location
  8. -
  9. Receive your refund within 5-7 business days of delivery
  10. -
-
- -
-

Defective Items

-

- If you receive a defective item, we'll replace it free of charge. Contact us with photos of the defect and your order number to get started. We'll provide prepaid return shipping. -

-
- -
-

Refund Processing

-

- Refunds are processed within 5-7 business days of receiving your return. The refund will be issued to your original payment method. Please allow an additional 3-5 business days for the credit to appear in your account. -

-
-
-
- -
-
-

International Shipping

-

- We currently ship to select countries. International orders typically take 10-21 business days to arrive. -

-

- Customers are responsible for any customs duties or import taxes required by their country. -

- - Check available countries → - -
- -
-

Questions?

-

- Our customer service team is here to help with any questions about shipping, returns, or exchanges. -

-

- We typically respond to inquiries within 24 hours during business days. -

- - Contact Us - -
-
- -
-

Your Satisfaction is Our Priority

-

- We stand behind the quality of our graphic tees. If for any reason you're not happy with your purchase, we'll make it right. No questions asked. -

-
-
-
- -- 2.49.1 From 0b516c838aba4f294e6e11900d857a2cac325d9a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:01 +0000 Subject: [PATCH 09/12] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 138 +++--------------------------------------- 1 file changed, 9 insertions(+), 129 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 40fc452..99af1d4 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -2,10 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; import FooterCard from "@/components/sections/footer/FooterCard"; -import Link from "next/link"; -import { TrendingUp, Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function ShopPage() { return ( @@ -21,148 +19,30 @@ export default function ShopPage() { secondaryButtonStyle="radial-glow" headingFontWeight="semibold" > - {/* Navbar */} - {/* Featured Products - First Product Set */} - - - {/* Best Sellers - Second Product Set */} -
- -
- - {/* Footer */} -- 2.49.1 From d2dac5e1e416293011ae3d56d3e854b033b9aeb3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:01 +0000 Subject: [PATCH 10/12] Update src/app/size-guide/page.tsx --- src/app/size-guide/page.tsx | 197 ++---------------------------------- 1 file changed, 6 insertions(+), 191 deletions(-) diff --git a/src/app/size-guide/page.tsx b/src/app/size-guide/page.tsx index c9e3865..95087bd 100644 --- a/src/app/size-guide/page.tsx +++ b/src/app/size-guide/page.tsx @@ -1,10 +1,9 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function SizeGuidePage() { return ( @@ -29,205 +28,21 @@ export default function SizeGuidePage() { { name: "Men", id: "/men" }, { name: "Women", id: "/women" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "/contact" } ]} - button={{ - text: "Cart", - href: "/cart", - }} + button={{ text: "Cart", href: "/cart" }} animateOnLoad={true} /> -
-
-

Size Guide

-

- Find your perfect fit with our comprehensive size chart and measurement guide -

-
-
- -
-
-
-

Men's Sizing

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SizeChest (in)Length (in)Sleeve (in)
XS34-36277.5
S36-38288
M38-40298.5
L40-42309
XL42-44319.5
2XL44-463210
-
-
- -
-

Women's Sizing

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SizeBust (in)Length (in)Sleeve (in)
XS32-34267
S34-36277.5
M36-38288
L38-40298.5
XL40-42309
2XL42-44319.5
-
-
- -
-

How to Measure

-
-
-

Chest/Bust

-

- Measure around the fullest part of your chest or bust. Keep the measuring tape parallel to the ground and not too tight. -

-
-
-

Length

-

- Measure from the top of your shoulder down to where you want the shirt to end. This determines how long the shirt will be. -

-
-
-

Sleeve Length

-

- Measure from the center back of your neck, across your shoulder, and down to your wrist. This ensures sleeves fit perfectly. -

-
-
-

Fit Tips

-

- Our tees are designed for a comfortable, relaxed fit. For a snug fit, size down. For an oversized look, size up. -

-
-
-
- -
-

Still Unsure About Your Size?

-

- Contact our customer service team for personalized sizing recommendations -

- - Get Help - -
-
-
- -- 2.49.1 From 860c926b86f8b6b88cf3d0897cd1cf05bd22ade0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:02 +0000 Subject: [PATCH 11/12] Update src/app/terms/page.tsx --- src/app/terms/page.tsx | 156 ++++------------------------------------- 1 file changed, 15 insertions(+), 141 deletions(-) diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx index 23df4f1..b82df70 100644 --- a/src/app/terms/page.tsx +++ b/src/app/terms/page.tsx @@ -3,19 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import FooterCard from "@/components/sections/footer/FooterCard"; -import Link from "next/link"; -import { Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; +import { Instagram, Twitter, Facebook } from "lucide-react"; export default function TermsPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, - { name: "Men", id: "/men" }, - { name: "Women", id: "/women" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, - ]; - return ( -
-
-
-

- Terms & Conditions -

-

- Last updated: January 2025 -

-
- -
-
-

- 1. Agreement to Terms -

-

- By accessing and using this website, you accept and agree to be bound by the terms and provision of this agreement. If you do not agree to abide by the above, please do not use this service. -

-
- -
-

- 2. Use License -

-

- Permission is granted to temporarily download one copy of the materials (information or software) on Your Logo's website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not: -

-
    -
  • Modify or copy the materials
  • -
  • Use the materials for any commercial purpose or for any public display
  • -
  • Attempt to decompile or reverse engineer any software contained on the website
  • -
  • Remove any copyright or other proprietary notations from the materials
  • -
  • Transfer the materials to another person or "mirror" the materials on any other server
  • -
-
- -
-

- 3. Disclaimer -

-

- The materials on Your Logo's website are provided on an 'as is' basis. Your Logo makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights. -

-
- -
-

- 4. Limitations -

-

- In no event shall Your Logo or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on the website, even if Your Logo or an authorized representative has been notified orally or in writing of the possibility of such damage. -

-
- -
-

- 5. Accuracy of Materials -

-

- The materials appearing on Your Logo's website could include technical, typographical, or photographic errors. Your Logo does not warrant that any of the materials on its website are accurate, complete, or current. Your Logo may make changes to the materials contained on its website at any time without notice. -

-
- -
-

- 6. Links -

-

- Your Logo has not reviewed all of the sites linked to its website and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by Your Logo of the site. Use of any such linked website is at the user's own risk. -

-
- -
-

- 7. Modifications -

-

- Your Logo may revise these terms of service for its website at any time without notice. By using this website, you are agreeing to be bound by the then current version of these terms of service. -

-
- -
-

- 8. Governing Law -

-

- These terms and conditions are governed by and construed in accordance with the laws of the United States, and you irrevocably submit to the exclusive jurisdiction of the courts in that location. -

-
- -
- - Back to Home - -
-
-
-
- -
+
+
); } \ No newline at end of file -- 2.49.1 From 37dd78626d242d1a5adbc8aef3766cd1c6ec1d68 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:02 +0000 Subject: [PATCH 12/12] Update src/app/women/page.tsx --- src/app/women/page.tsx | 181 ++--------------------------------------- 1 file changed, 6 insertions(+), 175 deletions(-) diff --git a/src/app/women/page.tsx b/src/app/women/page.tsx index 505c67c..2a05670 100644 --- a/src/app/women/page.tsx +++ b/src/app/women/page.tsx @@ -2,14 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Sparkles, TrendingUp, Heart, Instagram, Twitter, Facebook, Pinterest } from "lucide-react"; -import Link from "next/link"; +import { Instagram, Twitter, Facebook } from "lucide-react"; -export default function WomensPage() { +export default function WomenPage() { return ( -
- -
- -
- -
- -
- -
- -- 2.49.1