The Appointments page is served at theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/luislopez-stack/landing-pages/llms.txt
Use this file to discover all available pages before exploring further.
/about route and is the primary contact and booking surface for the dental practice. It is built from two components: About.js (the page layout wrapper) and AboutCard.js (the contact card with address, WhatsApp instructions, and call-to-action items). The page heading reads “Realiza Cita” by default and is intended to be the destination users land on after clicking any Cita button across the site.
About component
About.js renders a full-width Bootstrap container with a <Particle> background and a two-column row.
Left column (md={7}) — contains the page heading and the <Aboutcard> component with all contact copy:
src/components/About/About.js
md={5}) — displays the appointments illustration image imported from src/Assets/citas.png:
src/components/About/About.js
The page heading “Realiza Cita” is set as plain JSX text inside
About.js. Change Realiza and Cita to any strings that suit your business — for example “Agenda tu” and “Consulta”.AboutCard content
AboutCard.js renders a Bootstrap <Card> with a quote-card-view class containing a <blockquote>. The card has four distinct content areas:
src/components/About/AboutCard.js
- Introductory paragraph — greets the visitor and shows the practice address. The address placeholders
Av. direccionandAguascalientesare wrapped in<span className="purple">for visual emphasis. The paragraph also mentions WhatsApp availability during business hours and invites the user to make an appointment. - WhatsApp hours note — the sentence “el equipo esta siempre atento a whatsapp en nuestro horario corporativo” informs patients of the communication channel without specifying hours; update this line to include your actual working hours.
- Three CTA list items —
Contactanos,Reserva una cita, andMejora tu salud bucalare rendered with<ImPointRight>pointer icons fromreact-icons/im. These act as visual highlights for the three main patient actions. - Blockquote footer — a motivational quote and a
<footer>attribution currently set to"Soumyajit".
Updating contact info
To personalize the card, locate the following lines inAboutCard.js and replace the placeholder values:
src/components/About/AboutCard.js
Replace the address
Edit the two
<span className="purple"> elements inside the intro paragraph with your actual street address and city.Update the WhatsApp line
Replace the WhatsApp sentence with your real business hours and preferred contact channel (e.g. phone number, WhatsApp link via
wa.me).Customize the CTA list
Edit, add, or remove
<li className="about-activity"> items. Each <ImPointRight /> icon is optional — swap it for any other react-icons icon if preferred.Appointments image
The right-column image is imported at the top ofAbout.js:
src/components/About/About.js
- Replace
src/Assets/citas.pngwith your own image (keeping the same filename), or - Change the import path to point to a new file:
import laptopImg from "../../Assets/your-image.png".
className="img-fluid" ensures the image scales responsively within its column.
Commented-out features
About.js imports three additional components — Techstack, Toolstack, and Github — that are currently wrapped in a JSX block comment and not rendered:
src/components/About/About.js
{/* and */}) to restore these sections. For a dental or service business site they can be safely left commented out or deleted entirely along with their imports.