Skip to content

shantopaul/Business-Landing-Page

Repository files navigation

Business / Agency Landing Page

A professional, responsive business landing page built for agency, startup, SaaS, and service-based company use cases. The project demonstrates how a real client-ready landing page can be structured with modern frontend tools, reusable components, clean content data, polished UI sections, and conversion-focused page flow.

Live Demo: https://business-landing-page.shantopaul.com

Repository: https://github.com/shantopaul/Business-Landing-Page

Demo Brand Note: The name NexaGrow Agency is used only as fictional demo branding for this project. The main goal of this project is to showcase a professional Business / Agency Landing Page implementation.

Project Overview

This landing page is designed for businesses that need a modern digital presence to explain services, build trust, show pricing, answer customer questions, and collect project inquiries. It follows a common real-world structure used by agencies, consultants, startups, marketing teams, software service providers, and small businesses.

The project focuses on:

  • Professional business landing page design
  • Responsive layouts for desktop, tablet, and mobile
  • Clear conversion path from hero section to contact form
  • Component-based React architecture
  • Data-driven content management
  • Clean Tailwind CSS styling
  • Production-ready frontend build workflow

Preview

Desktop View

Business Agency Landing Page Desktop Preview

Mobile View

Business Agency Landing Page Mobile Preview

Key Features

  • Sticky responsive navigation bar
  • Mobile hamburger menu
  • Professional brand logo and favicon
  • Hero section with CTA buttons
  • Business trust statistics
  • Client logo / trusted brands section
  • Services section with reusable service cards
  • How It Works process section
  • Pricing plans with highlighted popular package
  • Testimonials with client initials and ratings
  • FAQ accordion using React state
  • Contact form with controlled inputs
  • Basic form validation for required fields
  • Success message after valid form submission
  • Responsive footer with links, services, contact info, and social icons
  • Fully responsive design for mobile, tablet, laptop, and desktop screens

Tech Stack

  • React.js - Component-based frontend development
  • Vite - Fast development server and production build
  • Tailwind CSS - Utility-first responsive styling
  • Lucide React - Professional icon system
  • GitHub Actions - Build status check
  • Vercel / Custom Domain - Live deployment

Main Sections

The landing page includes the following sections:

  1. Navbar
  2. Hero
  3. Trusted Brands
  4. Services
  5. Process / How It Works
  6. Pricing
  7. Testimonials
  8. FAQ
  9. Contact Form
  10. Footer

Project Structure

Business-Landing-Page/
|-- .github/
|   `-- workflows/
|       `-- ci.yml
|-- docs/
|   `-- screenshots/
|       |-- desktop-preview.jpg
|       `-- mobile-preview.jpg
|-- public/
|   |-- favicon.svg
|   |-- logo.svg
|   `-- preview.svg
|-- src/
|   |-- components/
|   |   |-- BrandLogo.jsx
|   |   |-- Button.jsx
|   |   |-- ClientLogos.jsx
|   |   |-- Contact.jsx
|   |   |-- FAQ.jsx
|   |   |-- FAQItem.jsx
|   |   |-- Footer.jsx
|   |   |-- Hero.jsx
|   |   |-- HowItWorks.jsx
|   |   |-- Navbar.jsx
|   |   |-- Pricing.jsx
|   |   |-- PricingCard.jsx
|   |   |-- SectionHeader.jsx
|   |   |-- ServiceCard.jsx
|   |   |-- Services.jsx
|   |   |-- TestimonialCard.jsx
|   |   `-- Testimonials.jsx
|   |-- data/
|   |   |-- clients.js
|   |   |-- faqs.js
|   |   |-- navigation.js
|   |   |-- pricingPlans.js
|   |   |-- processSteps.js
|   |   |-- services.js
|   |   `-- testimonials.js
|   |-- App.jsx
|   |-- index.css
|   `-- main.jsx
|-- index.html
|-- package.json
|-- package-lock.json
|-- postcss.config.js
|-- tailwind.config.js
|-- vite.config.js
`-- README.md

Root Files

File Purpose
index.html Main HTML entry file used by Vite. It contains metadata, page title, favicon link, and root mount element.
package.json Stores project scripts, dependencies, and frontend tooling configuration.
package-lock.json Locks dependency versions for consistent installs and CI builds.
vite.config.js Configures the Vite React build setup.
tailwind.config.js Configures Tailwind CSS content paths, theme extensions, colors, fonts, and shadows.
postcss.config.js Connects Tailwind CSS and Autoprefixer through PostCSS.
README.md Project documentation, live link, setup instructions, structure, contribution guide, and contact details.

Public Assets

File Purpose
public/favicon.svg Browser tab icon created from the custom NexaGrow demo mark.
public/logo.svg Full vector brand logo asset for documentation or future use.
public/preview.svg Social/project preview graphic for the landing page.

Documentation Assets

File Purpose
docs/screenshots/desktop-preview.jpg Desktop screenshot used in the README preview section.
docs/screenshots/mobile-preview.jpg Mobile screenshot used in the README preview section.

GitHub Workflow

File Purpose
.github/workflows/ci.yml Runs GitHub Actions CI on pushes and pull requests. The workflow installs dependencies with npm ci and verifies the production build with npm run build.

Source Folder

The src folder contains all React application code.

File Purpose
src/main.jsx React entry point. It renders the app into the #root element.
src/App.jsx Main layout file. It imports and arranges every landing page section in order.
src/index.css Global CSS, Tailwind directives, base styles, reusable section spacing, and layout utilities.

Components Folder

The src/components folder contains reusable UI pieces and full landing page sections.

Component Purpose
BrandLogo.jsx Reusable brand mark/logo component used in the navbar and footer.
Button.jsx Shared button component with reusable variants for primary, secondary, outline, and dark styles.
Navbar.jsx Sticky desktop navigation and mobile hamburger menu.
Hero.jsx Main hero section with headline, CTA buttons, stats, and dashboard mockup.
ClientLogos.jsx Trusted brands section using fictional demo client names.
Services.jsx Services section wrapper that maps service data into cards.
ServiceCard.jsx Reusable card for one service item.
HowItWorks.jsx Process section with three business workflow steps.
Pricing.jsx Pricing section wrapper that renders pricing cards.
PricingCard.jsx Reusable pricing package card with feature list and CTA.
Testimonials.jsx Testimonials section wrapper.
TestimonialCard.jsx Reusable testimonial card with initials and rating stars.
FAQ.jsx FAQ accordion state manager.
FAQItem.jsx Reusable accordion item for one question and answer.
Contact.jsx Controlled contact form with validation and success message.
Footer.jsx Footer with brand info, quick links, service links, contact details, and social icons.
SectionHeader.jsx Shared section heading component for consistent labels, titles, and descriptions.

Data Folder

The src/data folder keeps repeated content separate from UI logic. This makes the project easier to update for another business or client.

File Purpose
navigation.js Navbar and footer navigation link data.
services.js Service titles, descriptions, and icon references.
processSteps.js Three-step process content for the How It Works section.
pricingPlans.js Pricing package names, prices, descriptions, feature lists, and CTA text.
clients.js Fictional trusted brand names used for the client logo section.
testimonials.js Testimonial names, roles, initials, review text, and ratings.
faqs.js FAQ questions and answers used by the accordion.

Why This Structure

The codebase is organized to look and feel like a professional client project:

  • Repeated content is stored in src/data
  • Major page areas are split into dedicated section components
  • Reusable UI patterns are separated into shared components
  • Components are named clearly and kept focused
  • Tailwind classes are used consistently for responsive behavior
  • The page can be customized for a different business by updating data files and brand content

Responsive Design

The project is optimized for:

  • Mobile phones
  • Tablets
  • Laptops
  • Desktop screens

Responsive behavior includes:

  • Collapsible mobile navigation
  • Stacked mobile sections
  • Full-width mobile CTA buttons
  • Mobile-optimized hero content
  • Scaled dashboard mockup
  • Responsive service, pricing, testimonial, and client logo grids
  • Contact form layout that adapts from one column to two columns

Installation

npm install

Run Locally

npm run dev

Build for Production

npm run build

Preview Production Build

npm run preview

Deployment

The project is deployed at:

https://business-landing-page.shantopaul.com

For a new deployment:

  1. Push the repository to GitHub.
  2. Import the project into Vercel.
  3. Use the default Vite build settings.
  4. Set the custom domain if needed.
  5. Deploy the production build.

Quality Checklist

  • Responsive layout completed
  • Production build passes
  • GitHub Actions CI enabled
  • Verified signed commits enabled
  • Professional README included
  • Custom favicon and brand logo added
  • Clean component-based structure
  • Live URL configured

Contributions

Contributions are welcome. Anyone can suggest improvements, report issues, or work on enhancements for this project.

You can contribute to:

  • New business / agency landing page sections
  • UI/UX improvements
  • Responsive design fixes
  • Accessibility improvements
  • Performance optimization
  • Contact form enhancements
  • Documentation improvements
  • Bug fixes
  • Code cleanup and component refactoring

How to Contribute

  1. Fork the repository.
  2. Create a new feature branch.
  3. Make the change with clean, readable code.
  4. Run the quality checks:
npm run build
  1. Open a pull request with a clear description of the change.

Contributors

Name Email Role
Shanto Paul shanto@shantopaul.com Project Owner, Frontend Developer

Contact

Shanto Paul

Frontend Developer

Contact Shanto Paul

About

Professional business landing page for a digital agency/startup built with React.js, Tailwind CSS, and Vite.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages