Skip to main content
The Contacto component renders the contact information page with phone and email details for customer inquiries.

Component Structure

components/contacto.js
const Contacto = () => {
    return(
        <div className="container-fluid w-100 h-100" id="principal">
            <div className="row mt-2" id="contacto">
                <div className="col-12 d-flex">
                    <h3 className="mx-auto my-auto">Contacto</h3>
                </div>
                <div className="col-sm-12 col-lg-6 mt-2 text-center">
                    <i className="fa fa-phone fa-5x" aria-hidden="true"></i>
                    <p>Por teléfono</p>
                    <p>
                        Llamenos al n&uacute;mero
                        <br/>
                        <span>3547461901</span>
                    </p>
                </div>
                <div className="col-sm-12 col-lg-6 mt-2 text-center">
                    <i className="fa fa-envelope fa-5x" aria-hidden="true"></i>
                    <p>Por e-mail</p>
                    <p>
                        Escribanos a
                        <br/>
                        <a href="mailito:[email protected]" target="_blank" rel="noopener">[email protected]</a>
                    </p>
                </div>
            </div>
        </div>
    )
}

Props

This component does not accept any props.

Layout

The component uses a two-column layout:
  • Left column (col-lg-6): Phone contact information with Font Awesome phone icon
  • Right column (col-lg-6): Email contact information with Font Awesome envelope icon
On mobile devices (< 992px), columns stack vertically.

Contact Information

Phone: 3547461901
Email: [email protected]

Styling

The component uses custom CSS targeting:
  • #principal - Full-height container
  • #contacto - Contact-specific styles with accent color #F61067

Route

Accessible at: /#/contacto
  • NavbarTop - Navigation to contact page
  • Routing - Application routing configuration

Build docs developers (and LLMs) love