If you have any questions that are beyond the scope of this documentation, please feel free to email or contact us via my page.

Invoza is a multi purpose Bootstrap 5 landing page template built with React js.This responsive template comes with 6 Demo variations which can be used to build your product, service, marketing, app and SaaS landing pages. It’s fully responsive and built with bootstrap v5.3.2. You will be easily able to customize it for your needs.

Please feel free to get back to me in case if you are having any question or feedback.

I have tried to follow the standards and modular structure while developing the theme. Following sections are explaining the theme File & Folder, structure, html file struture and plugins.

File & Folder Structure


├── public
├── src
│   ├── assets
│   ├── components
│   ├── pages
│   ├── App.js
│   ├── App.test.js
│   ├── index.css
│   ├── index.js
│   ├── routes.js
│   ├── serviceWorker.js
│   ├── setupTests.js
│   └── theme.scss
├── package.json

App.js Structure


import React, { Component } from "react";
import routes from "./routes";
import {
	Route,
	Routes
} from "react-router-dom";
import withRouter from "./components/withRouter";
// Import Scss
import "./theme.scss";

//Import Icon Css
import "./assets/css/materialdesignicons.min.css";

class App extends Component {
	constructor(props){
		super(props);
		this.state = {};
	}
	render() {
		return (
			<React.Fragment>
				<Routes>
						{routes.map((route, idx) => (
						<Route path={route.path} element={route.component} key={idx} />
						))}
				</Routes>
			</React.Fragment>
		);
	}
}
	
default withRouter(App);
													
How to run project
  • npm install
    Note : Make sure this all installation process is done in command prompt.
  • npm start
  • npm run build
    To create a production build.

We've used the following resources as listed. These are some awesome creation and we are thankful to the community.

Once again thank you for your purchase. I'll be happy to answer the the questions you have related to the theme. In case if you have any suggestion or feature, request please feel free to contact me, I'll try to implement it and will release as part of future updates.

Stay Awesome!

- Themesdesign

Version 1.1.0     26 December 2023

  • Updated bootstrap version to 5.3.2.
  • Updated react version to 18.2.0.
  • Updated all packages and dependancies.
  • Minor issue fixes.

Version 1.0.0     07 June 2020

  • Initial released

Copyright © 2019 - 2020 Themesdesign.