From fca2c25e12f5891e61f92e08815ddaa554f077d1 Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Wed, 28 May 2025 16:30:40 +0530 Subject: feat: added frontpage layout --- frontend/src/components/hero-section.tsx | 163 +++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 frontend/src/components/hero-section.tsx (limited to 'frontend/src/components/hero-section.tsx') diff --git a/frontend/src/components/hero-section.tsx b/frontend/src/components/hero-section.tsx new file mode 100644 index 0000000..2450365 --- /dev/null +++ b/frontend/src/components/hero-section.tsx @@ -0,0 +1,163 @@ +"use client"; + +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/ui/badge"; +import { ArrowRight, Star, Sparkles } from "lucide-react"; +import Link from "next/link"; + +export function HeroSection() { + return ( +
+ {/* Background decoration */} +
+
+
+ +
+
+ {/* Left side - Content */} +
+ {/* Badge */} +
+ + + New Winter Collection + + + Limited Time + +
+ + {/* Main heading */} +
+

+ Curated + Exclusives +

+

+ not everyone gets blcklsted. Discover carefully curated fashion pieces that define modern elegance and exclusivity. +

+
+ + {/* Features */} +
+
+
+ Free shipping worldwide +
+
+
+ 30-day easy returns +
+
+
+ Sustainable materials +
+
+ + {/* CTA Buttons */} +
+ + +
+ + {/* Social proof */} +
+
+
+ {[1, 2, 3, 4, 5].map((star) => ( + + ))} +
+ 4.9/5 +
+
+ Trusted by 50,000+ customers +
+
+
+ + {/* Right side - Product showcase */} +
+ {/* Main product image */} +
+
+
+
+ +
+

Featured Product

+

Premium Winter Coat

+
+
+ + {/* Price tag */} +
+ 50% OFF +
+
+ + {/* Floating product cards */} +
+
+
+
+

Summer Dress

+

$89.99

+
+ + 4.8 +
+
+
+
+ +
+
+
+
+

Casual Sneakers

+

$129.99

+
+ + 4.9 +
+
+
+
+ + {/* Stats bubble */} +
+
+

This Week

+

2.5K+

+

Orders

+
+
+
+
+
+ + {/* Bottom wave */} +
+ + + +
+
+ ); +} \ No newline at end of file -- cgit v1.2.3-59-g8ed1b