All user-visible copy in the Soumyajit Landing Pages template lives directly inside the component files underDocumentation 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.
src/components/ β there is no CMS, config file, or separate data layer to manage. Every piece of text you want to change is a string or JSX literal inside one of the files below, and the Vite/CRA dev server hot-reloads it instantly as you save.
Hero section (Home.js)
The main greeting and the business ownerβs name are hardcoded insrc/components/Home/Home.js.
src/components/Home/Home.js
NAYELLI LIZHETT AGUILAR LOPEZ inside the <strong> tag with your own name or business name. The .main-name class applies a distinct highlight color (set separately from --imp-text-color; see src/style.css β .main-name).
The hero image displayed on the right column is imported at the top of the same file:
src/components/Home/Home.js
dentista.png for your own image by replacing the file or updating the import path.
Typewriter strings (Type.js)
The animated typewriter beneath the hero name is controlled entirely by thestrings array in src/components/Home/Type.js.
src/components/Home/Type.js
strings array to list your own services, roles, or taglines:
src/components/Home/Type.js
deleteSpeed milliseconds per character) before the next one starts. Set loop: false if you only want the animation to run once.
Business intro (Home2.js)
The βaboutβ block directly beneath the hero β the heading, body paragraph, and social icon row β lives insrc/components/Home/Home2.js.
src/components/Home/Home2.js
<h1> text and the <p> body to describe your own business. Wrap any words you want highlighted in the accent color with <b className="purple">β¦</b> or <span className="purple">β¦</span>.
The avatar/tilt image on the right is imported as:
src/components/Home/Home2.js
homeImg.png with your own image to update the profile photo in this section.
Services / project cards (Projects.js)
The services grid is built from<ProjectCard> components in src/components/Projects/Projects.js. Here is a representative card:
src/components/Projects/Projects.js
| Prop | Type | Description |
|---|---|---|
imgPath | Image import | Card thumbnail image. Import your image at the top of Projects.js and pass the variable here. |
isBlog | boolean | When true, the primary button label reads βBlogβ; when false it reads βCitaβ. |
title | string | Bold heading displayed on the card. |
description | string | Body text beneath the title. Keep it concise β around 2β3 sentences. |
ghLink | string | URL or internal route for the primary call-to-action button (e.g., "/about" or "https://example.com"). |
demoLink | string (optional) | URL for a secondary βDemoβ button. Omit the prop or pass an empty string to hide the button entirely. |
<Col> block:
src/components/Projects/Projects.js
Appointment / contact info (AboutCard.js)
The contact card shown on the About / Citas page is rendered bysrc/components/About/AboutCard.js.
src/components/About/AboutCard.js
Update the address
Replace
Av. direccion and Aguascalientes (both wrapped in <span className="purple">) with your real street address and city.Update the WhatsApp / hours copy
Edit the second sentence that mentions WhatsApp business hours to reflect your actual availability (e.g., βMonβFri, 9 amβ6 pmβ).
Update the CTA list items
The three
<li className="about-activity"> items are your call-to-action bullet points. Replace Contactanos, Reserva una cita, and Mejora tu salud bucal with actions relevant to your business.Social media links
BothHome2.js (the hero section social row) and Footer.js render GitHub, Twitter, LinkedIn, and Instagram icons, but all href values are currently empty strings.
src/components/Home/Home2.js β hero social icons:
src/components/Home/Home2.js
src/components/Footer.js β footer social icons (same four icons, same empty href values):
src/components/Footer.js
href="" attribute in both files with the full URLs to your profiles (e.g., href="https://github.com/yourhandle"). If you donβt use a particular platform, remove its <li> block entirely.
After editing any component file, the development server hot-reloads automatically β you will see your changes in the browser within a second or two, with no need to restart
npm start.