Skip to main content
The Nosotros component renders the about us page with company information and an installation image.

Component Structure

components/nosotros.js
const Nosotros = () => {
    return(
        <div className="container-fluid w-100">
            <div className="row mt-2 justify-content-center align-items-center" id="nosotros">
                <div className="col-12 text-center">
                    <h3>Nosotros</h3>
                </div>
                <div className="col-12 mt-3">
                    <div className="row align-items-center">
                        <div className="col-sm-12 col-lg-6 mt-2">
                            <img src="./static/instalando.jpg" className="img-fluid" />
                        </div>
                        <div className="col-sm-12 col-lg-6 mt-4">
                        <p> Somos una pequeña empresa dedicada a la venta e instalación de camaras de seguridad Ip/Wifi.<br/>
                            Trabajamos con marcas de renombre como: <strong>Imou</strong>, <strong>Ezviz</strong>, <strong>Dahua</strong>, <strong>Bosch.</strong>
                            Contamos con una amplia experiencia dentro del rubro.<br/>
                        </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    )
}

Props

This component does not accept any props.

Layout

The component uses a two-column layout:
  • Left column (col-lg-6): Installation image (./static/instalando.jpg)
  • Right column (col-lg-6): Company description text
On mobile devices (< 992px), columns stack vertically.

Content

The page describes SSEGH as a small business specializing in security camera sales and installation, highlighting partnerships with major brands:
  • Imou
  • Ezviz
  • Dahua
  • Bosch

Styling

The component uses custom CSS targeting:
  • #nosotros - About page specific styles with Dancing Script font for the heading

Route

Accessible at: /#/nosotros
  • NavbarTop - Navigation to about page
  • Routing - Application routing configuration

Build docs developers (and LLMs) love