All branding in the Soumyajit Landing Pages template is centralised in a handful of files —Documentation 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.
public/index.html, src/components/Navbar.js, public/favicon.png, and src/style.css. There is no separate build configuration or theme file to touch; every brand-facing detail lives in one of these locations.
Site name and metadata
The browser tab title and search-engine description are defined directly inpublic/index.html. Open the file and update the highlighted values below.
public/index.html
Update all occurrences of the title and description — including the Open Graph and Twitter Card
<meta> tags — so that social share previews also reflect your brand.Logo
The navbar logo image lives atsrc/Assets/logo.png and is imported at the top of src/components/Navbar.js.
src/components/Navbar.js
<Navbar.Brand> component:
src/components/Navbar.js
Swap the file in place
Replace
src/Assets/logo.png with your own PNG, keeping the exact filename logo.png. The import and <img> tag require no changes.Use a different filename or path
Add your image anywhere under
src/Assets/ and update the import line in Navbar.js:src/components/Navbar.js
Favicon
The browser favicon is the filepublic/favicon.png, referenced in public/index.html:
public/index.html
public/favicon.png with your own icon, keeping the filename favicon.png. A 32 × 32 or 64 × 64 pixel PNG works best across all browsers. If you prefer a different filename or format, update the href in index.html to match.
Accent color
Every purple highlight across the site — including the hero name, typewriter text, section heading accents, and nav link underlines — is driven by a single CSS custom property defined insrc/style.css.
src/style.css
--imp-text-color to any valid CSS color value and the accent recolors everywhere automatically. For example, to use the project’s primary brand color:
src/style.css
The
.purple utility class is applied throughout the component JSX (e.g., <span className="purple">, <b className="purple">). You do not need to touch any JSX when changing the accent color — updating --imp-text-color is the only step required.Navbar brand name
The brand identity in the navbar is expressed through the logo image rendered inside<Navbar.Brand>. If you prefer a plain-text brand name instead of an image, replace the <img> tag with your text:
src/components/Navbar.js
<Navbar.Brand>.