DreamSalon Agent Banner

Introduction

DreamSalon is a stylish, fully responsive, and feature-rich template designed specifically for beauty salons, spas, barbershops, and wellness centers. Built with Bootstrap 5.3.x, it comes with 3 elegant homepage layouts and a powerful admin panel that includes separate dashboards for customers. The template supports RTL and offers both light and dark modes for a seamless user experience across all devices. Whether you're building a salon website or a complete appointment management system, DreamSalon provides all the tools you need in one clean, modern package.

Requirement

Technologies
logo
NextJs
Typescript
System Requirements
  • Node.js
  • Yarn or npm
  • Browser: Modern browsers (Chrome, Firefox, Safari, Edge)

Features

Dream Salon is a modern, fully responsive beauty salons, spas, barbershops, and wellness centers template built with Nextjs, TypeScript. It comes with 3 stunning homepage layouts and a complete set of pages for restaurants, cafes, and food delivery services.

Technical Features
  • Built with React 18 & TypeScript
  • Vite for Fast Development & Builds
  • Redux Toolkit for State Management
  • React Router with Lazy Loading
  • Swiper.js for Sliders & Carousels
  • Fancybox Lightbox Integration
  • Responsive Design (Mobile & Tablet Friendly)
  • Auth Pages (Sign In, Sign Up, Forgot Password)

File Structure

Project Overview

The project follows a modular structure with clear separation of concerns.

dreamsalon/
	│
	└── nextjs/
		├── app/
		│	├── (authentication)/
		│	│	├── coming-soon/
		│	│	├── error-404/
		│	│	├── error-500/
		│	│	├── forgot-password/
		│	│	├── reset-password/
		│	│	├── sign-in/
		│	│	├── sign-up/
		│	│	├── under-maintenance/
		│	│	└── layout.tsx
		│	├── (public-page)/
		│	│	├── about-us/
		│	│	├── blog-details/
		│	│	├── blog-grid/
		│	│	├── blog-list/
		│	│	├── branches/
		│	│	|
		│	│	└── layout.tsx
		│	├── global.scss
		│	├── layout.tsx
		│	└── page.tsx
		├── components/
		│	├── bootstrap-js/
		│	├── breadcrumb/
		│	├── common-date-picker/
		│	├── common-date-range-picker/
		│	├── common-footer/
		│	├── common-lightbox/
		│	├── common-select/
		│	├── common-time-pickers/
		│	├── header/
		│	├── horizontal-slide/
		│	├── image-with-base-path/
		│	├── modals/
		│	├── preloader/
		│	├── scroll-to-top/
		│	├── swiper/
		│	├── text-editor/
		│	└── user-sidebar/
		├── config/
		│	└── metadata.ts
		├── core/
		│	├── data/
		│	├── json/
		│	└── redux/
		├── hooks/
		│	├── useAnimationTitle.ts
		│	├── useCheckoutWizard.ts
		│	├── useCounterAnimation.tsx
		│	├── useFancybox.tsx
		│	├── useFavourite.ts
		│	├── useReduxHooks.ts
		│	├── useTagInput.ts
		│	└── useThemeSettings.ts
		├── pages/
		│	├── Home/
		│	├── Home2/
		│	├── Home3/
		│	├── auth-page/
		│	│	├── forgot-password/
		│	│	├── reset-password/
		│	│	├── sign-in/
		│	│	└── sign-up/
		│	├── blog/
		│	├── content/
		│	├── error/
		│	├── menus/
		│	├── pages/
		│	└── shop/
		├── public/
		├── routes/
		│	└── all_routes.tsx
		├── style/
		│	├── css/
		│	├── plugins/
		│	└── scss/
		├── types/
		│	├── bootstrap-modal.d.ts
		│	├── bootstrap.d.ts
		│	└── swiper-css.d.ts
		├── utils/
		│	└── fancyboxUtils.ts
		├── environment.tsx
		├── next.config.ts
		├── next-env.d.ts
		├── package.json
		├── tsconfig.json
		└── eslint.config.mjs
	

Structure

Structure Overview

Dream Salon Next.js uses the App Router with route groups, shared layouts, and Redux Providers to keep the app scalable and maintainable.

The root layout in app/layout.tsx wraps the entire app with Redux Providers, global styles, and shared components like ScrollToTop and BootstrapJs.

Below is the Next.js root layout structure:

import type { Metadata } from "next";
import ScrollToTop from "@/components/scroll-to-top/ScrollToTop";
import "bootstrap/dist/css/bootstrap.min.css";
import BootstrapJs from "@/components/bootstrap-js/bootstrapjs";
import Providers from "@/core/redux/Providers";
import "./global.scss";

export const metadata: Metadata = {
  title: "Home | DreamSalon – Hair & Beauty Salon Bootstrap Template with Admin Dashboard",
  description: "DreamSalon is a Bootstrap-based template for hair salons, beauty spas, and wellness centers. Includes an admin dashboard for managing appointments, staff, services, and clients.",
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body>
        <Providers>
          <ScrollToTop />
          {children}
          <BootstrapJs />
        </Providers>
      </body>
    </html>
  );
}

Installation

Prerequisites
Node.js Installation

Ensure that Node.js is installed and running on your system.

Package Manager

Use npm (recommended with this project lockfile) or Yarn if preferred.

npm -v
Next.js

Next.js is the framework powering this project. It is installed automatically as a project dependency — no global installation required.

Installation Steps
1
Extract & Navigate

After downloading, extract the Dream Salon package and navigate to the nextjs directory.

2
Install Dependencies
npm install

This command will install all required dependencies into the node_modules directory.

3
Start Development Server
npm run dev

Starts the Next.js development server with Fast Refresh. Changes to components, styles, and TypeScript modules are reflected instantly in the browser.

4
Open in Browser

Open your browser at the URL shown in the terminal (typically http://localhost:3000/)

Build

Run the build command to generate the production-ready output in the .next directory:

npm run build
Deployment

Deploy the .next folder contents to your web server. The build output contains all compiled HTML pages, optimized CSS, minified JavaScript, and vendor libraries ready for production.

Fonts

The default font is Inter. To change the font:

Update the @import URL and the --font-family-primary variable in style.css:

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

// Font Family
$font-family-base: "Oswald", sans-serif;

Color System

The design token variables are defined in the @theme block of your CSS file. Here are the primary color tokens:

--color-primary: #c25414;
--color-success: #009966;
--color-info: #155DFC;
--color-warning: #E88C30;
--color-danger: #E5252A;
Background Color Change

You can change the header background color in style.css as per your wish

.navbar-header { 
	@apply bg-(--topbar-bg)
}

Icons

Use Lucide icons with spesific class

<i class="icon-house"></i>
<i class="icon-shopping-bag"></i>
<i class="icon-menu"></i>

License

Dream Salon is developed by Dreams Technologies and is available under both Envato Extended & Regular License options.

Regular License

Usage by either yourself or a single client is permitted for a single end product, provided that end users are not subject to any charges.

Extended License

For use by you or one client in a single end product for which end users may be charged.

What are the main differences between the Regular License and the Extended License?

Note

If you operate as a freelancer or agency, you have the option to acquire the Extended License, which permits you to utilize the item across multiple projects on behalf of your clients.

Support

Need Support?

If this documentation does not address your questions, please feel free to contact us via email at support@dreamstechnologies.com

Reach the team at GMT+5:30. Typical reply within 12–24 hours on weekdays — rarely up to 48 hrs during holidays. Support is available to verified buyers for template-related issues.

Contact Support

Important Note : We strive to offer top-notch support, but it's only available to verified buyers and for template-related issues such as bugs and errors. Custom changes and third-party module setups are not covered.

Custom Work

Do you need a customized application for your business?

If you need a customized application for your business depends on your specific requirements and goals, Please contact us. Customization can be the key to success, ensuring your project perfectly aligns with your unique goals and requirements.

Don't Miss Out on the Benefits of Customization!

Unlock the potential of your project. It's time to ensure your project isn't another cookie-cutter solution but truly unique and effective one.

Discover how customization can make a difference in your project's success. Let's create a solution that's as unique as your vision!

We'll tailor the application to meet your specific needs and preferences.

We will upload your website to the server and ensure it is live.

thanks

Thank You

Thank you once again for downloading Dream Salon.
We hope you're enjoying your experience, and we kindly request that you take a moment to share your valuable review and rating with us.

Review Link