The contact and location section sits at the bottom ofDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Jimmy13anhelo/paginaweb2.github.io/llms.txt
Use this file to discover all available pages before exploring further.
index.php inside two distinct blocks: a white .caja-especialidad-ancha container that holds the interactive Google Maps embed, and a dark-brown #seccion-contacto div that groups the café’s email, phone, and social media links. Both sections are reachable directly from the navigation bar.
Google Maps Embed
The café’s coordinates in Cusco’s historic centre are-13.5269295, -71.9492471. The map is rendered with a standard <iframe> embed that fills the .caja-mapa container, which constrains it to 300px tall with border-radius: 12px and overflow: hidden so the map respects the rounded corners.
.btn-google-maps anchor opens the same location directly in Google Maps:
Updating the Location
Get a new embed URL from Google Maps
Go to maps.google.com, search for or navigate to your new location, click Share, choose the Embed a map tab, and copy the full
<iframe> tag. The src attribute is what you need.Replace the iframe src in index.php
Find the
<iframe> inside .caja-mapa and swap in the new src URL:Contact Details
The#seccion-contacto block in index.php displays the café’s direct contact information:
| Channel | Value |
|---|---|
informes@sentidoscafe.com | |
| Phone | +51 984 XXXXXX |
The phone number shown in the contact block (
+51 984 XXXXXX) is currently a placeholder. Update it in index.php once the café’s definitive phone line is confirmed. Note that the WhatsApp ordering number is configured separately — as const numeroTelefono = "937604465" in buscador.js — and must be updated independently.Social Media Links
Three social media icons are displayed inside.redes-sociales in the #seccion-contacto block. All three href values are currently placeholder URLs that must be replaced with the real profile addresses before launch.
TU_PAGINA, TU_PERFIL, and TU_USUARIO with the café’s real handles. estilo.css already provides branded hover effects — Facebook turns blue, Instagram renders a gradient, and TikTok gets a neon drop-shadow — so no CSS changes are needed after updating the links.
Anchor Navigation & Smooth Scrolling
The nav bar includes a direct anchor link to the contact section:#seccion-contacto element without a hard jump.
Smooth scrolling is enabled globally in This means any
estilo.css with a single CSS rule applied to every element on the page:href="#anchor" link anywhere on the site will automatically animate — no JavaScript scroll library is required.