diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..aa0c1fa --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,35 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/badge"; +import Link from "next/link"; + +export function Hero() { + return ( +
+ +
+ Distribuidor Mayorista #1 + + EL PALACIO DE TENI + + + Venta de pacas de tenis originales y premium para revendedores. + Impulsa tu negocio con los mejores precios del mercado en USD y MXN. + Envíos garantizados con número de guía. + +
+ + +
+
+
+
+ ); +}