Eye-catching hero section with call-to-action buttons and animated SVG backgrounds
The Hero component is the first section visitors see on your landing page. It features a centered headline, description text, call-to-action buttons, and decorative SVG backgrounds.
import Hero from "@/components/Hero/index1";export default function Home() { return ( <> <Hero /> {/* Other components */} </> );}
src/app/page.tsx
import Hero from "@/components/Hero/index1";import Features from "@/components/Features";import Contact from "@/components/Contact";export default function Home() { return ( <> <Hero /> <Features /> <Contact /> </> );}
Edit the component file directly at src/components/Hero/index1.tsx:
src/components/Hero/index1.tsx
<h1 className="mb-5 text-black dark:text-white font-bold text-3xl sm:text-4xl md:text-5xl leading-tight"> Potencia tu negocio con un eCommerce o Landing Page diseñados para vender</h1><p className="mb-12 text-base !leading-relaxed text-body-color dark:text-body-color-dark sm:text-lg md:text-xl"> Atrae más clientes, aumenta tus ventas y optimiza cada clic con una plataforma hecha a tu medida. ¡Convierte visitantes en ventas hoy mismo!</p>
// Remove the SVG divs at the bottom of the component<div className="absolute right-0 top-0 z-[-1] opacity-30 lg:opacity-100"> {/* Remove this entire div */}</div>