From b4a7aacb2392b563deb2252e3d96a59406f8b1bb Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:52:29 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 53 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..a90943c --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,53 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import Image from "next/image"; +import Link from "next/link"; + +export function Hero() { + return ( +
+ +
+ + Step Into Excellence + + + Discover our curated collection of high-quality footwear. From formal elegance to casual comfort, find the perfect pair for every occasion. + +
+ + +
+
+
+

5k+

+

Happy Customers

+
+
+
+

200+

+

Unique Styles

+
+
+
+
+ Premium Leather Boots +
+ +
+
+ ); +}